Compare commits

..

No commits in common. "31cfb252dfb31142cc33563f79a3c080a012f277" and "d4656bdcfe39fdad69b43a2c44ba6febf19ac247" have entirely different histories.

1 changed files with 6 additions and 6 deletions

View File

@ -754,7 +754,7 @@ void publish_env_state()
{ {
Serial.printf("roomtemp.txt=\"%.01fC\"",current_room_temp); Serial.printf("roomtemp.txt=\"%.01fC\"",current_room_temp);
lcd_send_stop_bit(); lcd_send_stop_bit();
Serial.printf("roomhumid.txt=\"%d%%\"", (int)current_room_humid); Serial.printf("roomhumid.txt=\"%d%\"",current_room_humid);
lcd_send_stop_bit(); lcd_send_stop_bit();
} }
break; break;
@ -821,7 +821,7 @@ void lcd_refresh()
case 4: case 4:
Serial.printf("roomtemp.txt=\"%.01fC\"",current_room_temp); Serial.printf("roomtemp.txt=\"%.01fC\"",current_room_temp);
lcd_send_stop_bit(); lcd_send_stop_bit();
Serial.printf("roomhumid.txt=\"%d%%\"", (int)current_room_humid); Serial.printf("roomhumid.txt=\"%.01f%\"",current_room_humid);
lcd_send_stop_bit(); lcd_send_stop_bit();
if (ac_mode != 2) if (ac_mode != 2)
panel.writeStr("temp.txt", String(ac_temperature) + "C"); panel.writeStr("temp.txt", String(ac_temperature) + "C");