corrected github action

corrected MQTT `comm_disabled` #529
This commit is contained in:
lumapu 2023-01-07 11:55:45 +01:00
parent cfb74c6a4c
commit 4265856814
3 changed files with 3 additions and 2 deletions

View file

@ -68,7 +68,7 @@ def readVersion(path, infile):
os.rename(src, dst) os.rename(src, dst)
versionout = version[:-1] + "_" + sha + "_esp8266_sh1106.bin" versionout = version[:-1] + "_" + sha + "_esp8266_sh1106.bin"
src = path + ".pio/build/esp8266_sh1106/firmware.bin" src = path + ".pio/build/esp8266-sh1106/firmware.bin"
dst = path + "firmware/" + versionout dst = path + "firmware/" + versionout
os.rename(src, dst) os.rename(src, dst)

View file

@ -3,6 +3,7 @@
(starting from release version `0.5.66`) (starting from release version `0.5.66`)
## 0.5.70 ## 0.5.70
* corrected MQTT `comm_disabled` #529
## 0.5.69 ## 0.5.69
* merged SH1106 1.3" Display, thx @dAjaY85 * merged SH1106 1.3" Display, thx @dAjaY85

View file

@ -172,7 +172,7 @@ void app::tickIVCommunication(void) {
onceAt(std::bind(&app::tickIVCommunication, this), nxtTrig); onceAt(std::bind(&app::tickIVCommunication, this), nxtTrig);
} }
if (mConfig->mqtt.broker[0] > 0) if (mConfig->mqtt.broker[0] > 0)
mMqtt.tickerComm(mIVCommunicationOn); mMqtt.tickerComm(!mIVCommunicationOn);
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------