From 64d17d7c655246c9f3a3a3a8967a1e770a2b5668 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sat, 7 Mar 2026 11:43:12 +0100 Subject: [PATCH] Test for minflowtemp --- src/devices/thermostat.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index a9ab776ae..011cb8403 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -1250,9 +1250,16 @@ void Thermostat::process_RC300Summer(std::shared_ptr telegram) { if (hc->heatingtype != 3) { has_update(telegram, hc->designtemp, 4); - has_update(telegram, hc->minflowtemp, model() == EMSdevice::EMS_DEVICE_FLAG_BC400 ? 13 : 8); } else { has_update(telegram, hc->designtemp, 5); + } + + // minflowtemp could be in 8 or 13, see #2879 and #2969 + // for testing! + uint8_t minflowtemp = 0; + if (telegram->read_value(minflowtemp, 13) && minflowtemp > 0 && model() == EMSdevice::EMS_DEVICE_FLAG_BC400 && hc->heatingtype != 3) { + has_update(hc->minflowtemp, minflowtemp); + } else { has_update(telegram, hc->minflowtemp, 8); }