Skip to content

Commit

Permalink
0.7.61
Browse files Browse the repository at this point in the history
* fix compiler warnings #1191
* fix ePaper logo during night time #1151
  • Loading branch information
lumapu committed Sep 30, 2023
1 parent b832aff commit 5a01cc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* merged `hmPayload` and `hmsPayload` into single class
* merged generic radio functions into new parent class `radio.h`
* moved radio statistics into the inverter - each inverter has now seperate statistics which can be accessed by click on the footer in `/live`
* fix compiler warnings #1191
* fix ePaper logo during night time #1151

## 0.7.60 - 2023-09-27
* fixed typos in changelog #1172
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/Display/Display.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class Display {
}
#if defined(ESP32)
else if (mCfg->type == 10) {
mEpaper.loop(totalPower, totalYieldDay, totalYieldTotal, nrprod);
mEpaper.loop(((allOff) ? 0.0 : totalPower), totalYieldDay, totalYieldTotal, nrprod);
mRefreshCycle++;
}

Expand Down

0 comments on commit 5a01cc8

Please sign in to comment.