From 4f98b4bb210b093cce5d6c7f374cf6b5ef1bce21 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Fri, 30 Apr 2021 15:15:07 +0200 Subject: [PATCH] fix remote thermostat roomtemp --- src/devices/thermostat.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index ea5d84725..dd068085b 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -298,7 +298,8 @@ std::shared_ptr Thermostat::heating_circuit(std::sha // not found, search device-id types for remote thermostats if (telegram->src >= 0x18 && telegram->src <= 0x1B) { - hc_num = telegram->src - 0x17; + hc_num = telegram->src - 0x17; + toggle_ = true; } // still didn't recognize it, ignore it