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

before update 0.4.1

This commit is contained in:
Robert van den Breemen 2020-12-13 11:11:27 +01:00
parent 608a8b140b
commit 4ba377c19c
2 changed files with 12 additions and 10 deletions

View File

@ -13,8 +13,9 @@ The features of this OTGW firmware are:
- enable telnet listening (interpreted data and debugging)
- send MQTT messages for every change (parsed OT message)
- integrate with Home Assistant (and Domoticz)
- implement interface for original OTmon application
- implement a REST API
- serial interface on port 1023 for original OTmon application
- a REST API (http://<ip>/api/v0/otgw/{id})
- sending a MQTT command to OTGW (topic: OTGW/command)
To do:
- InfluxDB client to do direct logging
@ -24,6 +25,7 @@ Looking for the documentation, go here (work in progress): https://github.com/
| Version | Release notes |
|-|-|
| 0.4.1 | MQTT command sending now works, topic: OTGW/command and |
| 0.4.0 | RestAPI implemented - as simple as <ip>/api/v0/otgw/{id} to get the latest values |
| 0.3.1 | Bug: Open AP after configuration, change ESP to STA mode on StartWifi <br> No more default Debug to Serial, only to port 23 telnet |
| 0.3.0 | OTmon stream implementend on port 1023 (debug port remains on port 23 - telnet) |

View File

@ -1,14 +1,14 @@
//The version number conforms to semver.org format
#define _VERSION_MAJOR 0
#define _VERSION_MINOR 4
#define _VERSION_PATCH 0
#define _VERSION_BUILD 310
#define _VERSION_PATCH 1
#define _VERSION_BUILD 311
//#define _VERSION_PRERELEASE beta //uncomment to define prerelease labels: alpha - beta - rc
#define _VERSION_DATE "13-12-2020"
#define _VERSION_TIME "03:52:52"
#define _SEMVER_CORE "0.4.0"
#define _SEMVER_BUILD "0.4.0+310"
#define _SEMVER_FULL "0.4.0+310"
#define _SEMVER_NOBUILD "0.4.0 (13-12-2020)"
#define _VERSION "0.4.0+310 (13-12-2020)"
#define _VERSION_TIME "11:11:03"
#define _SEMVER_CORE "0.4.1"
#define _SEMVER_BUILD "0.4.1+311"
#define _SEMVER_FULL "0.4.1+311"
#define _SEMVER_NOBUILD "0.4.1 (13-12-2020)"
#define _VERSION "0.4.1+311 (13-12-2020)"
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver