From 510602e117468aed67538f8fd2ac6e7ef67fda18 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Fri, 8 Dec 2023 11:34:20 +0100 Subject: [PATCH] fix RC300 mode, #1488 --- src/devices/thermostat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index ad97967ab..2aba74ba4 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -1031,7 +1031,7 @@ void Thermostat::process_RC300Set(std::shared_ptr telegram) { // has_update(telegram, hc->selTemp, 10, 1); // single byte conversion, value is * 2 - manual has_update(telegram, hc->mode_new, 21); // for BC400 - has_bitupdate(telegram, hc->mode, 2, 0); // RC300, RC100 + has_bitupdate(telegram, hc->mode, 0, 0); // RC300, RC100 /* telegram->read_value(hc->mode_new, 21); // 0-off, 1-manual, 2-auto if (Helpers::hasValue(hc->mode_new)) {