Some adjustment to data storage

This commit is contained in:
Gunnar Skjold
2021-12-07 19:34:34 +01:00
parent eb479f8216
commit e6d3b47d4f
2 changed files with 44 additions and 13 deletions

View File

@@ -35,8 +35,12 @@ public:
private:
Timezone* tz;
DayDataPoints day;
MonthDataPoints month;
DayDataPoints day = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
MonthDataPoints month = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
RemoteDebug* debugger;
void setHour(uint8_t, int16_t);
void setDay(uint8_t, int32_t);