Compare commits

...

2 Commits

Author SHA1 Message Date
Siwat Sirichai 7ebc091691 Update espmega_iot_core.cpp 2023-10-02 18:47:51 +07:00
Siwat Sirichai 98ea13a3dd ac_set_state temperature clamping 2023-10-02 18:47:43 +07:00
1 changed files with 4 additions and 0 deletions

View File

@ -699,6 +699,10 @@ void ac_set_state(int mode, int temperature, int fan_speed)
{
ac_mode = mode;
ac_temperature = temperature;
if (ac_temperature < AC_MIN_TEMPERATURE)
ac_temperature = AC_MIN_TEMPERATURE;
else if (ac_temperature > AC_MAX_TEMPERATURE)
ac_temperature = AC_MAX_TEMPERATURE;
ac_fan_speed = fan_speed;
temperature -= AC_MIN_TEMPERATURE;