* fix MqTT endless loop #1013
This commit is contained in:
lumapu 2023-07-08 23:47:40 +02:00
parent ddf63eaffe
commit baf392f2e9
3 changed files with 6 additions and 1 deletions

View file

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

View file

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

View file

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