From ba2ad4e175f2bff8d2945f887d72c2ea88939bc7 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sun, 11 May 2025 15:00:41 +0200 Subject: [PATCH] typo --- src/devices/boiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/boiler.cpp b/src/devices/boiler.cpp index 37d29971b..e11898622 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -68,7 +68,7 @@ Boiler::Boiler(uint8_t device_type, int8_t device_id, uint8_t product_id, const register_telegram_type(0x28, "WeatherComp", true, MAKE_PF_CB(process_WeatherComp)); } - if (!isHeatPump()) { + if (isHeatPump()) { register_telegram_type(0x494, "UBAEnergySupplied", false, MAKE_PF_CB(process_UBAEnergySupplied)); register_telegram_type(0x495, "UBAInformation", false, MAKE_PF_CB(process_UBAInformation)); register_telegram_type(0x48D, "HpPower", true, MAKE_PF_CB(process_HpPower));