add string quotes

This commit is contained in:
Siwat Sirichai 2024-01-11 22:13:24 +07:00
parent c404b8a3bf
commit 2ae108f8b9

View file

@ -249,9 +249,9 @@ void CUDDisplay::updateACState() {
this->displayAdapter->print("fan_3_btn.pic=");
this->displayAdapter->print(fan_speed == 3 ? COMPONENT_AC_FAN_MODE_LOW_PIC_ACTIVE : COMPONENT_AC_FAN_MODE_LOW_PIC_INACTIVE);
this->sendStopBytes();
this->displayAdapter->print("temp_txt.txt=");
this->displayAdapter->print("temp_txt.txt=\"");
this->displayAdapter->print(temperature);
this->displayAdapter->print("C");
this->displayAdapter->print("C\"");
this->sendStopBytes();
}