mirror of
https://github.com/lumapu/ahoy.git
synced 2025-08-06 09:58:23 +02:00
0.8.59
* merge PR: solve display settings dependencies #1369 * fix language typos #1346 * full update of ePaper after booting #1107 * fix MqTT yield day reset even if `pause inverter during nighttime` isn't active #1368
This commit is contained in:
parent
b792f69faf
commit
93b53a10d9
12 changed files with 67 additions and 41 deletions
|
@ -319,7 +319,7 @@ class app : public IApp, public ah::Scheduler {
|
|||
#endif /*ENABLE_MQTT*/
|
||||
#endif
|
||||
#if defined(PLUGIN_DISPLAY)
|
||||
if(mConfig->plugin.display.type != DISP_TYPE_T0_NONE)
|
||||
if(DISP_TYPE_T0_NONE != mConfig->plugin.display.type)
|
||||
mDisplay.payloadEventListener(cmd);
|
||||
#endif
|
||||
updateLed();
|
||||
|
@ -366,6 +366,7 @@ class app : public IApp, public ah::Scheduler {
|
|||
void tickMinute(void);
|
||||
void tickZeroValues(void);
|
||||
void tickMidnight(void);
|
||||
void notAvailChanged(void);
|
||||
|
||||
HmSystemType mSys;
|
||||
HmRadio<> mNrfRadio;
|
||||
|
@ -402,6 +403,7 @@ class app : public IApp, public ah::Scheduler {
|
|||
|
||||
uint8_t mSendLastIvId;
|
||||
bool mSendFirst;
|
||||
bool mAllIvNotAvail;
|
||||
|
||||
bool mNetworkConnected;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue