mirror of
https://github.com/lumapu/ahoy.git
synced 2025-08-06 09:58:23 +02:00
0.7.61
* fix compiler warnings #1191 * fix ePaper logo during night time #1151
This commit is contained in:
parent
b832aff11c
commit
5a01cc86e6
2 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,8 @@
|
||||||
* merged `hmPayload` and `hmsPayload` into single class
|
* merged `hmPayload` and `hmsPayload` into single class
|
||||||
* merged generic radio functions into new parent class `radio.h`
|
* 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`
|
* 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
|
## 0.7.60 - 2023-09-27
|
||||||
* fixed typos in changelog #1172
|
* fixed typos in changelog #1172
|
||||||
|
|
|
@ -135,7 +135,7 @@ class Display {
|
||||||
}
|
}
|
||||||
#if defined(ESP32)
|
#if defined(ESP32)
|
||||||
else if (mCfg->type == 10) {
|
else if (mCfg->type == 10) {
|
||||||
mEpaper.loop(totalPower, totalYieldDay, totalYieldTotal, nrprod);
|
mEpaper.loop(((allOff) ? 0.0 : totalPower), totalYieldDay, totalYieldTotal, nrprod);
|
||||||
mRefreshCycle++;
|
mRefreshCycle++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue