From 01e1c6e25b77f6d771a747a84a41131713aadae7 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sun, 22 Nov 2020 09:45:33 +0100 Subject: [PATCH] fix heating/tapwater #620 --- 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 808888115..38a1add5d 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -928,7 +928,7 @@ void Boiler::process_UBAMonitorFastPlus(std::shared_ptr telegram // at this point do a quick check to see if the hot water or heating is active uint8_t state = 0; telegram->read_value(state, 11); - boilerState_ = state & 0x01 ? 0x80 : 0; + boilerState_ = state & 0x01 ? 0x08 : 0; boilerState_ |= state & 0x02 ? 0x01 : 0; boilerState_ |= state & 0x04 ? 0x02 : 0;