From 705171f3058f060ce5f63f12e7c609f8c442bbb7 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sun, 16 Feb 2025 11:04:19 +0100 Subject: [PATCH] fix verify telegram-type --- 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 5953ff276..ce6a3cbad 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -2719,7 +2719,7 @@ bool Thermostat::set_R3000Holiday(const char * value, const int8_t id) { if (model() == EMSdevice::EMS_DEVICE_FLAG_R3000) { write_command(0x269, 0, data, 6, 0x269); } else if (model() == EMSdevice::EMS_DEVICE_FLAG_RC100) { - write_command(0x43F, 0, data, 6, 0x269); + write_command(0x43F, 0, data, 6, 0x43F); } return true; }