Browse Source

0.7.61

* fix compiler warnings #1191
* fix ePaper logo during night time #1151
pull/1197/head
lumapu 1 year ago
parent
commit
5a01cc86e6
  1. 2
      src/CHANGES.md
  2. 2
      src/plugins/Display/Display.h

2
src/CHANGES.md

@ -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

2
src/plugins/Display/Display.h

@ -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++;
}

Loading…
Cancel
Save