From 9163fc74d4cd5df81e50c97dcce5d7a81a37f767 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Mon, 2 Jan 2023 12:16:46 +0100 Subject: [PATCH] fix reading maxHeat values --- src/devices/boiler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/devices/boiler.cpp b/src/devices/boiler.cpp index dd00729a0..ba22c6b5c 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -1232,14 +1232,14 @@ void Boiler::process_HpInConfig(std::shared_ptr telegram) { // Boiler(0x08) -W-> Me(0x0B), HpHeaterConfig(0x0485) void Boiler::process_HpCooling(std::shared_ptr telegram) { - has_update(pvCooling_, 21); + has_update(telegram, pvCooling_, 21); } // Boiler(0x08) -W-> Me(0x0B), HpHeaterConfig(0x0492), data: 03 00 00 04 00 void Boiler::process_HpHeaterConfig(std::shared_ptr telegram) { - has_update(maxHeatComp_, 2); - has_update(maxHeatHeat_, 3); - has_update(maxHeatDhw_, 4); + has_update(telegram, maxHeatComp_, 2); + has_update(telegram, maxHeatHeat_, 3); + has_update(telegram, maxHeatDhw_, 4); } // 0x2A - MC110Status