From 9aa78111be1246cc4ac7211e43644ae96f9daa70 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Thu, 1 Jan 2026 10:48:21 +0100 Subject: [PATCH] fix selflowtemp #2876 --- src/devices/boiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/boiler.cpp b/src/devices/boiler.cpp index 65a55cdff..474a9854c 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -2478,9 +2478,9 @@ bool Boiler::set_flow_temp(const char * value, const int8_t id) { uint8_t v1 = v; if (has_telegram_id(0xE4)) { EMSESP::txservice_.add(Telegram::Operation::TX_WRITE, device_id(), EMS_TYPE_UBASetPoints2, 1, &v1, 1, 0, false); - } else { - EMSESP::txservice_.add(Telegram::Operation::TX_WRITE, device_id(), EMS_TYPE_UBASetPoints, 0, &v1, 1, 0, false); } + // always write to 0x1A + EMSESP::txservice_.add(Telegram::Operation::TX_WRITE, device_id(), EMS_TYPE_UBASetPoints, 0, &v1, 1, 0, false); return true; }