fix MQTT status update

removed MQTT `available_text` (can be deducted from `available`)
enhanced MQTT documentation in `User_Manual.md`
remvoed `tickSunset` and `tickSunrise` from MQTT. It's not needed any more because of minute wise check of status (`processIvStatus`)
changed MQTT topic `status` to nummeric value, check documentation in `User_Manual.md`
fix regular expression of `setup.html` for inverter name and channel name
This commit is contained in:
lumapu 2022-12-27 21:05:31 +01:00
parent 2a24400550
commit a8d9b7ad0b
6 changed files with 52 additions and 53 deletions

View file

@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 5
#define VERSION_PATCH 61
#define VERSION_PATCH 62
//-------------------------------------
typedef struct {
@ -77,6 +77,8 @@ union serial_u {
#define MQTT_STATUS_AVAIL_NOT_PROD 1
#define MQTT_STATUS_AVAIL_PROD 2
enum {MQTT_STATUS_OFFLINE = 0, MQTT_STATUS_PARTIAL, MQTT_STATUS_ONLINE};
//-------------------------------------
// EEPROM
//-------------------------------------