From c533e91643ee53a1d164f1ccb38b168e64f3f96d Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Wed, 18 Oct 2023 11:22:53 +0200 Subject: [PATCH] heatburnpower does not count similar with wwburnpow, #1335 --- 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 f173ee285..ff3d6f7cc 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -1002,7 +1002,7 @@ void Boiler::check_active() { store_energy(); } // store new modulation and time - heatBurnPow = heatingActive_ ? curBurnPow_ : 0; + heatBurnPow = heatingActive_ && !tapwaterActive_ ? curBurnPow_ : 0; wwBurnPow = tapwaterActive_ ? curBurnPow_ : 0; powLastReadTime_ = uuid::get_uptime(); }