mirror of
https://github.com/lumapu/ahoy.git
synced 2025-08-06 09:58:23 +02:00
parent
ddf63eaffe
commit
baf392f2e9
3 changed files with 6 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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…
Add table
Add a link
Reference in a new issue