mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
Accept exhaustTemp_ update from telegram 0xE5 if value is unequal zero.
This commit is contained in:
@@ -1098,7 +1098,13 @@ void Boiler::process_UBAMonitorSlowPlus(std::shared_ptr<const Telegram> telegram
|
||||
has_bitupdate(telegram, ignWork_, 2, 3);
|
||||
has_bitupdate(telegram, heatingPump_, 2, 5);
|
||||
has_bitupdate(telegram, wwCirc_, 2, 7);
|
||||
//has_update(telegram, exhaustTemp_, 6);
|
||||
|
||||
/* Update exhaust temperature if it is unequal 0 */
|
||||
const uint8_t exhaustTempOffset{6};
|
||||
uint16_t exhaustTemp{0};
|
||||
if (telegram->read_value(exhaustTemp, exhaustTempOffset))
|
||||
has_update(telegram, exhaustTemp_, exhaustTempOffset);
|
||||
|
||||
has_update(telegram, burnStarts_, 10, 3); // force to 3 bytes
|
||||
has_update(telegram, burnWorkMin_, 13, 3); // force to 3 bytes
|
||||
has_update(telegram, burn2WorkMin_, 16, 3); // force to 3 bytes
|
||||
|
||||
Reference in New Issue
Block a user