From ad89fe15b1366e7cc866bc6b9821d06c84d8e49f Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Mon, 23 Dec 2024 09:09:36 +0100 Subject: [PATCH] fix seltep command for CR11 #2295 --- src/devices/thermostat.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index fc4901db3..0014b4929 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -3748,6 +3748,9 @@ bool Thermostat::set_temperature(const float temperature, const uint8_t mode, co break; } + } else if (model == EMSdevice::EMS_DEVICE_FLAG_CR11) { + offset = 10; // just seltemp write to manualtemp + } else if (isRC300() || (model == EMSdevice::EMS_DEVICE_FLAG_RC100)) { validate_typeid = set_typeids[hc->hc()]; switch (mode) {