mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
Typo
This commit is contained in:
@@ -1477,7 +1477,7 @@ void Boiler::process_UBAMonitorFastPlus(std::shared_ptr<const Telegram> telegram
|
|||||||
|
|
||||||
// at this point do a quick check to see if the hot water or heating is active
|
// at this point do a quick check to see if the hot water or heating is active
|
||||||
uint8_t state = EMS_VALUE_UINT8_NOTSET;
|
uint8_t state = EMS_VALUE_UINT8_NOTSET;
|
||||||
if (telegram->read_value(state, 11) && model() != EMSdevice::EMS_DEVICE_FLAG_HIU && model() != EMSdevice::EMS_DEVICE_FLAG_HEATPUMP) {
|
if (telegram->read_value(state, 11) && model() != EMSdevice::EMS_DEVICE_FLAG_HIU && !isHeatPump()) {
|
||||||
boilerState_ = state & 0x01 ? 0x08 : 0; // burnGas
|
boilerState_ = state & 0x01 ? 0x08 : 0; // burnGas
|
||||||
boilerState_ |= state & 0x02 ? 0x01 : 0; // heatingPump
|
boilerState_ |= state & 0x02 ? 0x01 : 0; // heatingPump
|
||||||
boilerState_ |= state & 0x04 ? 0x02 : 0; // 3-way-valve
|
boilerState_ |= state & 0x04 ? 0x02 : 0; // 3-way-valve
|
||||||
|
|||||||
Reference in New Issue
Block a user