diff --git a/src/CHANGES.md b/src/CHANGES.md index 67368f8d..89f334cc 100644 --- a/src/CHANGES.md +++ b/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 diff --git a/src/plugins/Display/Display.h b/src/plugins/Display/Display.h index 8152f372..c4853bab 100644 --- a/src/plugins/Display/Display.h +++ b/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++; }