From d03ad276627eda6dc1126de8bb854bf5ccd9e65f Mon Sep 17 00:00:00 2001 From: I-am-nightingale Date: Fri, 12 Apr 2024 23:41:20 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=20=D0=B5=D1=89=D0=B5=20=D1=80=D0=B0?= =?UTF-8?q?=D0=B7-=20=D1=81=D0=BB=D0=B8=D1=88=D0=BA=D0=BE=D0=BC=20=D0=BC?= =?UTF-8?q?=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=A1=D0=BA=D0=9E=D0=B1=D0=9E=D1=87?= =?UTF-8?q?=D0=9A=D0=BE=D0=A4=D1=84=20=D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0?= =?UTF-8?q?=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/tclac/tclac.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/tclac/tclac.cpp b/components/tclac/tclac.cpp index c02a45e..0a46959 100644 --- a/components/tclac/tclac.cpp +++ b/components/tclac/tclac.cpp @@ -183,7 +183,7 @@ void tclacClimate::readData() { preset = ClimatePreset::CLIMATE_PRESET_ECO; } else if (dataRX[9] & (1 << 2)){ preset = ClimatePreset::CLIMATE_PRESET_COMFORT; - } else if ((dataRX[19] & (1 << 0))){ + } else if (dataRX[19] & (1 << 0)){ preset = ClimatePreset::CLIMATE_PRESET_SLEEP; }