Browse Source

0.7.10

* fix MqTT endless loop #1013
pull/1027/head
lumapu 1 year ago
parent
commit
baf392f2e9
  1. 3
      src/CHANGES.md
  2. 2
      src/defines.h
  3. 2
      src/publisher/pubMqttIvData.h

3
src/CHANGES.md

@ -1,5 +1,8 @@
# Development Changes # Development Changes
## 0.7.10 - 2023-07-08
* fix MqTT endless loop #1013
## 0.7.9 - 2023-07-08 ## 0.7.9 - 2023-07-08
* added 'improve' functions to set wifi password directly with ESP web tools #1014 * added 'improve' functions to set wifi password directly with ESP web tools #1014
* fixed MqTT publish while appling power limit #1013 * fixed MqTT publish while appling power limit #1013

2
src/defines.h

@ -13,7 +13,7 @@
//------------------------------------- //-------------------------------------
#define VERSION_MAJOR 0 #define VERSION_MAJOR 0
#define VERSION_MINOR 7 #define VERSION_MINOR 7
#define VERSION_PATCH 9 #define VERSION_PATCH 10
//------------------------------------- //-------------------------------------
typedef struct { typedef struct {

2
src/publisher/pubMqttIvData.h

@ -101,6 +101,8 @@ class PubMqttIvData {
mState = SEND_DATA; mState = SEND_DATA;
else if(mSendTotals) else if(mSendTotals)
mState = SEND_TOTALS; mState = SEND_TOTALS;
else
mState = START;
} }
void stateSend() { void stateSend() {

Loading…
Cancel
Save