Compare commits
3 Commits
1ea278834a
...
0e6ef77af6
Author | SHA1 | Date |
---|---|---|
Siwat Sirichai | 0e6ef77af6 | |
Siwat Sirichai | 7ebc091691 | |
Siwat Sirichai | 98ea13a3dd |
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue