Skip to content

Commit

Permalink
heatburnpower does not count similar with wwburnpow, #1335
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDvP committed Oct 18, 2023
1 parent de2792f commit c533e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/boiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit c533e91

Please sign in to comment.