From 98ea13a3dda5684d79432915f3a1402c246ffc0d Mon Sep 17 00:00:00 2001 From: Siwat Sirichai Date: Mon, 2 Oct 2023 18:47:43 +0700 Subject: [PATCH] ac_set_state temperature clamping --- src/espmega_iot_core.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/espmega_iot_core.cpp b/src/espmega_iot_core.cpp index df30835..30f53b1 100644 --- a/src/espmega_iot_core.cpp +++ b/src/espmega_iot_core.cpp @@ -699,6 +699,10 @@ void ac_set_state(int mode, int temperature, int fan_speed) { ac_mode = mode; ac_temperature = temperature; + if (ac_temperatureAC_MAX_TEMPERATURE) + ac_temperature=AC_MAX_TEMPERATURE; ac_fan_speed = fan_speed; temperature -= AC_MIN_TEMPERATURE;