This commit is contained in:
proddy
2019-11-28 22:00:31 +01:00
parent 47c7c2edc2
commit 2d009894ba
2 changed files with 6 additions and 2 deletions

View File

@@ -1370,7 +1370,11 @@ void _process_UBAMonitorSlow(_EMS_RxTelegram * EMS_RxTelegram) {
EMS_Boiler.extTemp = _toShort(0); EMS_Boiler.extTemp = _toShort(0);
} }
EMS_Boiler.boilTemp = _toShort(2); // 0x8000 if not available // set boiler temp only if we actually have a real value
if (_toShort(2) != EMS_VALUE_USHORT_NOTSET) {
EMS_Boiler.boilTemp = _toShort(2); // 0x8000 if not available
}
EMS_Boiler.pumpMod = _toByte(9); EMS_Boiler.pumpMod = _toByte(9);
EMS_Boiler.burnStarts = _toLong(10); EMS_Boiler.burnStarts = _toLong(10);
EMS_Boiler.burnWorkMin = _toLong(13); EMS_Boiler.burnWorkMin = _toLong(13);

View File

@@ -1 +1 @@
#define APP_VERSION "1.9.4b18" #define APP_VERSION "1.9.4b19"