@@ -190,19 +190,19 @@ void ZigbeeThermostat::zbAttributeRead(uint16_t cluster_id, const esp_zb_zcl_att
190190 uint16_t min_value = attribute->data .value ? *(uint16_t *)attribute->data .value : 0 ;
191191 _min_humidity = 1.0 * min_value / 100 ;
192192 read_humidity_config++;
193- log_d (" Received min humidity: %.2f% from endpoint %d" , _min_humidity, src_endpoint);
193+ log_d (" Received min humidity: %.2f%% from endpoint %d" , _min_humidity, src_endpoint);
194194 }
195195 if (attribute->id == ESP_ZB_ZCL_ATTR_REL_HUMIDITY_MEASUREMENT_MAX_VALUE_ID && attribute->data .type == ESP_ZB_ZCL_ATTR_TYPE_U16) {
196196 uint16_t max_value = attribute->data .value ? *(uint16_t *)attribute->data .value : 0 ;
197197 _max_humidity = 1.0 * max_value / 100 ;
198198 read_humidity_config++;
199- log_d (" Received max humidity: %.2f% from endpoint %d" , _max_humidity, src_endpoint);
199+ log_d (" Received max humidity: %.2f%% from endpoint %d" , _max_humidity, src_endpoint);
200200 }
201201 if (attribute->id == ESP_ZB_ZCL_ATTR_REL_HUMIDITY_TOLERANCE_ID && attribute->data .type == ESP_ZB_ZCL_ATTR_TYPE_U16) {
202202 uint16_t tolerance = attribute->data .value ? *(uint16_t *)attribute->data .value : 0 ;
203203 _tolerance_humidity = 1.0 * tolerance / 100 ;
204204 read_humidity_config++;
205- log_d (" Received tolerance: %.2f% from endpoint %d" , _tolerance_humidity, src_endpoint);
205+ log_d (" Received tolerance: %.2f%% from endpoint %d" , _tolerance_humidity, src_endpoint);
206206 }
207207 if (read_humidity_config == 3 ) {
208208 log_d (" All humidity config attributes processed" );
0 commit comments