Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
add flowSetTemp to IPM unmixed #711
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDvP authored Feb 23, 2021
1 parent ccab48a commit e5634c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/mixer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,11 @@ void Mixer::process_IPMStatusMessage(std::shared_ptr<const Telegram> telegram) {
// do we have a mixed circuit
if (ismixed == 2) {
changed_ |= telegram->read_value(flowTemp_, 3); // is * 10
changed_ |= telegram->read_value(flowSetTemp_, 5);
changed_ |= telegram->read_value(status_, 2); // valve status
}

changed_ |= telegram->read_bitvalue(pumpStatus_, 1, 0); // pump is also in unmixed circuits
changed_ |= telegram->read_value(flowSetTemp_, 5); // flowSettemp is also in unmixed circuits, see #711
}

// Mixer on a MM10 - 0xAB
Expand Down

0 comments on commit e5634c8

Please sign in to comment.