* fix compiler warnings #1191
* fix ePaper logo during night time #1151
This commit is contained in:
lumapu 2023-10-01 01:13:42 +02:00
parent b832aff11c
commit 5a01cc86e6
2 changed files with 3 additions and 1 deletions

View file

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

View file

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