Skip to content

Commit

Permalink
corrected github action
Browse files Browse the repository at this point in the history
corrected MQTT `comm_disabled` lumapu#529
  • Loading branch information
lumapu committed Jan 7, 2023
1 parent cfb74c6 commit 4265856
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/getVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def readVersion(path, infile):
os.rename(src, dst)

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
os.rename(src, dst)

Expand Down
1 change: 1 addition & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
(starting from release version `0.5.66`)

## 0.5.70
* corrected MQTT `comm_disabled` #529

## 0.5.69
* merged SH1106 1.3" Display, thx @dAjaY85
Expand Down
2 changes: 1 addition & 1 deletion src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ void app::tickIVCommunication(void) {
onceAt(std::bind(&app::tickIVCommunication, this), nxtTrig);
}
if (mConfig->mqtt.broker[0] > 0)
mMqtt.tickerComm(mIVCommunicationOn);
mMqtt.tickerComm(!mIVCommunicationOn);
}

//-----------------------------------------------------------------------------
Expand Down

0 comments on commit 4265856

Please sign in to comment.