before update 0.9.0-beta

This commit is contained in:
Robert van den Breemen 2021-11-03 19:01:02 +01:00
parent ee06713a7e
commit 44449296ba
4 changed files with 14 additions and 12 deletions

View File

@ -486,8 +486,7 @@ uint16_t print_u16()
}
uint16_t print_status()
{
{
char _flag8_master[8] {0};
char _flag8_slave[8] {0};

View File

@ -142,6 +142,9 @@ void sendMQTTuptime(){
}
void sendtimecommand(){
if (!settingNTPenable) return; // if NTP is disabled, then return
if (NtpStatus != TIME_SYNC) return; // only send time command when time is synced
//send time command to OTGW
//send time / weekday
char msg[15]={0};
sprintf(msg,"SC=%d:%02d/%d", hour(), minute(), dayOfWeek(now()));

View File

@ -50,7 +50,7 @@ Looking for the documentation, go here (work in progress): <br> https://github.
| Version | Release notes |
|-|-|
| 0.9.0 | Fixing OT message decoding, Master/Slave decoding<br>Fixing statusbit decoding for webUI<br>Compile with espcore 3.0.2 (lowlevel core update)<br>Improved wifi reconnection logic (reboot if 15min not connected)<br>Added NTP hostname setting in webUI<br>removing ezTime library, using AceTime for time logic|
| 0.9.0 | New: Adding time setup commands for Thermostat<br>Fixed: Improved OT status (incl. VH and Solar) message decoding<br>Fixed: Statusbit decoding in webUI<br>Improved: Better wifi auto-reconnect (ESP based)<BR>Improved: Wifi reconnection logic, reboot if 15 min not connected<br>New: NTP hostname setting in webUI<br>Changed: removed ezTime NTP library, moved to ConfigTime NTP and AceTime|
| 0.8.6 | Improving wifi reconnect (without reboot)<br>Fix: Double definition to a HA sensor<br>Adding: OEMDiagnosticCode topic to HA Discovery<br>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)<br>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

@ -2,15 +2,15 @@
#define _VERSION_MAJOR 0
#define _VERSION_MINOR 9
#define _VERSION_PATCH 0
#define _VERSION_BUILD 1196
#define _VERSION_GITHASH "66f30fd"
#define _VERSION_BUILD 1198
#define _VERSION_GITHASH "ee06713"
#define _VERSION_PRERELEASE beta
#define _VERSION_DATE "02-11-2021"
#define _VERSION_TIME "22:57:35"
#define _VERSION_DATE "03-11-2021"
#define _VERSION_TIME "18:58:02"
#define _SEMVER_CORE "0.9.0"
#define _SEMVER_BUILD "0.9.0+1196"
#define _SEMVER_GITHASH "0.9.0+66f30fd"
#define _SEMVER_FULL "0.9.0-beta+66f30fd"
#define _SEMVER_NOBUILD "0.9.0-beta (02-11-2021)"
#define _VERSION "0.9.0-beta+66f30fd (02-11-2021)"
#define _SEMVER_BUILD "0.9.0+1198"
#define _SEMVER_GITHASH "0.9.0+ee06713"
#define _SEMVER_FULL "0.9.0-beta+ee06713"
#define _SEMVER_NOBUILD "0.9.0-beta (03-11-2021)"
#define _VERSION "0.9.0-beta+ee06713 (03-11-2021)"
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver