1
mirror of https://github.com/rvdbreemen/OTGW-firmware synced 2024-11-16 04:33:49 +01:00

Fixing webUI renameing OEM Diagnostic and adding OEM Fault

This commit is contained in:
Robert van den Breemen 2021-07-22 22:45:54 +02:00
parent 92b6f52d71
commit 1b06ad08dd
3 changed files with 5 additions and 3 deletions

View File

@ -50,7 +50,7 @@ Looking for the documentation, go here (work in progress): <br> https://github.
| Version | Release notes |
|-|-|
| 0.8.6 | Adding: OEMDiagnosticCode topic to HA Discovery|
| 0.8.6 | Adding: OEMDiagnosticCode topic to HA Discovery|Bugfix: UI now labels OEM DiagnosticCode correctly, and added the real OEM Fault code|
| 0.8.5 | Bugfix: Queue bug never sending the command (reporter: @jvinckers)|Small improvement to status parsing, only resturned status from slave gets parsed now.|
| 0.8.4 | Adding MsgID for Solar Storage<br>Verbose Status parsing for Ventlation / Heatrecovery<br>Adding msgid 113/114 unsuccessful burnerstart / flame too low<br>Added
smartpower configruation detection<br>Added 2.3 spec status bits for (summer/winter time, dhw blocking, service indicator, electric production)<br>Adding PS=1 detection (WebUI notification)<br>Fix: restore settings issue|

View File

@ -670,6 +670,7 @@
,[ "dhwtemperature", "Domestic Hotwater Temperature"]
,[ "dhwsetpoint", "Domestic Hotwater Setpoint"]
,[ "oemfaultcode", "OEM Fault Code"]
,[ "oemdiagnosticcode", "OEM Diagnostic Code"]
,[ "coolingmodus", "Cooling Enabled"]
,[ "coolingactive", "Cooling Status"]
,[ "otcactive", "Outside Temp Compensation"]

View File

@ -298,8 +298,9 @@ void sendOTmonitor()
sendJsonOTmonObj("dhwsetpoint", OTdataObject.TdhwSet,"°C", msglastupdated[OT_TdhwSet]);
sendJsonOTmonObj("maxchwatersetpoint", OTdataObject.MaxTSet,"°C", msglastupdated[OT_MaxTSet]);
sendJsonOTmonObj("chwaterpressure", OTdataObject.CHPressure, "bar", msglastupdated[OT_CHPressure]);
sendJsonOTmonObj("oemfaultcode", OTdataObject.OEMDiagnosticCode, "", msglastupdated[OT_OEMDiagnosticCode]);
sendJsonOTmonObj("oemdiagnosticcode", OTdataObject.OEMDiagnosticCode, "", msglastupdated[OT_OEMDiagnosticCode]);
sendJsonOTmonObj("oemfaultcode", OTdataObject.OT_ASFflags && 0xFF, "", msglastupdated[OT_OEMFaultCode]);
sendEndJsonObj("otmonitor");
} // sendOTmonitor()