fix selflowtemp, #2641

This commit is contained in:
MichaelDvP
2025-10-29 10:46:46 +01:00
parent 1647a10b1b
commit 8a4e6d5ed5

View File

@@ -2459,6 +2459,8 @@ bool Boiler::set_flow_temp(const char * value, const int8_t id) {
if (has_telegram_id(0xE4)) { if (has_telegram_id(0xE4)) {
write_command(EMS_TYPE_UBASetPoints2, 1, v, 0xE4); write_command(EMS_TYPE_UBASetPoints2, 1, v, 0xE4);
// some ems+ boilers uses ems1 setting telegram, see https://github.com/emsesp/EMS-ESP32/discussions/2641
write_command(EMS_TYPE_UBASetPoints, 0, v);
} else { } else {
write_command(EMS_TYPE_UBASetPoints, 0, v, 0x18); write_command(EMS_TYPE_UBASetPoints, 0, v, 0x18);
} }