-
Notifications
You must be signed in to change notification settings - Fork 0
/
IAQLogger.ino
124 lines (90 loc) · 2.12 KB
/
IAQLogger.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#include <Arduino.h>
#include <Wire.h>
#include <FS.h>
#include <SPIFFS.h>
#include "src/Button.h"
#include "src/Peripherals.h"
#include "src/ModeManager.h"
#include "src/ApiServer.h"
ApiServer *apiServer = NULL;
void onButtonPress()
{
PowerManager::onUserInteratcion();
}
void onButtonAClick()
{
DIAGNOSTIC("BTN,A");
onButtonPress();
ModeManager::changeMode();
}
void onButtonBClick()
{
DIAGNOSTIC("BTN,B");
onButtonPress();
}
void onButtonCClick()
{
DIAGNOSTIC("BTN,C");
onButtonPress();
}
void onButtonDClick()
{
DIAGNOSTIC("BTN,D");
onButtonPress();
}
void onButtonALongPress()
{
DIAGNOSTIC("BTN,AL");
// ModeManager::currentDisplay->powerDown();
// PowerManager::enterL3();
}
void setup()
{
DIAGNOSTIC("SETUP")
if (esp_sleep_get_wakeup_cause() != ESP_SLEEP_WAKEUP_TIMER)
{
delay(500);
Serial.begin(115200);
DataLog::instance()->setup();
Peripherals::setup();
Peripherals::loop();
ModeManager::setup();
Peripherals::buttonA->registerOnClickCallback(onButtonAClick);
Peripherals::buttonA->registerOnLongPressCallback(onButtonALongPress);
Peripherals::buttonB->registerOnClickCallback(onButtonBClick);
Peripherals::buttonC->registerOnClickCallback(onButtonCClick);
Peripherals::buttonD->registerOnClickCallback(onButtonDClick);
PowerManager::enterL1();
DataLog::instance()->showContent();
}
//Peripherals::rtc->set(0, 38, 18, 2, 13, 7, 21);
}
unsigned long lastAppLoopTime = 0;
void appLoop()
{
PowerManager::loop();
Peripherals::loop();
if (lastAppLoopTime == 0 || millis() - lastAppLoopTime > 60000)
{
lastAppLoopTime = millis();
ModeManager::currentDisplay->loop();
DataLog::instance()->loop();
}
}
void loop()
{
if (Status::serverMode)
{
appLoop();
if (!apiServer)
{
PowerManager::enterL0();
apiServer = new ApiServer();
}
apiServer->loop();
return;
}
PowerManager::enterL1();
appLoop();
PowerManager::enterL2();
}