-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainCodeBackup.cpp
237 lines (185 loc) · 5.57 KB
/
MainCodeBackup.cpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#include <Arduino.h>
#include <WiFi.h>
#include <WiFiClient.h>
#include <FirebaseESP32.h>
#include <time.h>
#define LED_BUILTIN 2
#define SENSOR1 26
#define SENSOR2 27
long currentMillis = 0;
long previousMillis = 0;
int interval = 1000;
float calibrationFactor = 6.6;
volatile byte pulseCount1;
byte pulse1Sec1 = 0;
float flowRate1;
unsigned int flowMilliLitres1;
unsigned long totalMilliLitres1;
volatile byte pulseCount2;
byte pulse1Sec2 = 0;
float flowRate2;
unsigned int flowMilliLitres2;
unsigned long totalMilliLitres2;
boolean leakDetected = false;
unsigned long leakDetectedTime = 0;
boolean recheckLeak = false;
unsigned long recheckTime = 0;
unsigned long previousDay = 0;
unsigned int totalMilliLitres1Today = 0;
unsigned long pumpStartTime = 0;
unsigned long pumpRunningTime = 0;
boolean pumpRunning = false;
void IRAM_ATTR pulseCounter1()
{
pulseCount1++;
}
void IRAM_ATTR pulseCounter2()
{
pulseCount2++;
}
#define FIREBASE_HOST "your_firebase_host"
#define FIREBASE_AUTH "your_firebase_host"
const char* ntpServer = "0.id.pool.ntp.org";
// GMT +7 25200, 7 * 60 * 60
const long gmtOffset_sec = 25200;
const int daylightOffset_sec = 0;
struct tm timeinfo;
FirebaseData firebaseData;
FirebaseJson json;
void connectToWiFi() {
const char * ssid = "your_wifi_ssid";
const char * password = "your_wifi_password";
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.print(".");
}
Serial.println();
Serial.println("Wi-Fi connected");
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
}
void runningTimeLog(int Params, int totalMilliLitres1Today)
{
if (!getLocalTime(&timeinfo)) {
Serial.println("Failed to obtain time");
return;
}
char timeYear[30];
char timeMonth[30];
char timeDay[30];
strftime(timeYear, 30, "%Y", &timeinfo);
strftime(timeMonth, 30, "%B", &timeinfo);
strftime(timeDay, 30, "%d", &timeinfo);
char pathNode[100];
sprintf(pathNode, "pumpRunningHistory/%s/%s/%s", timeYear, timeMonth, timeDay);
FirebaseJson updates;
updates.set("runningTime", Params);
updates.set("totalMilliLitres", totalMilliLitres1Today);
Firebase.updateNodeSilentAsync(firebaseData, pathNode, updates);
}
void setup()
{
Serial.begin(115200);
connectToWiFi();
pinMode(LED_BUILTIN, OUTPUT);
pinMode(SENSOR1, INPUT_PULLUP);
pinMode(SENSOR2, INPUT_PULLUP);
pulseCount1 = 0;
flowRate1 = 0.0;
flowMilliLitres1 = 0;
totalMilliLitres1 = 0;
pulseCount2 = 0;
flowRate2 = 0.0;
flowMilliLitres2 = 0;
totalMilliLitres2 = 0;
previousMillis = 0;
Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH);
Firebase.reconnectWiFi(true);
attachInterrupt(digitalPinToInterrupt(SENSOR1), pulseCounter1, FALLING);
attachInterrupt(digitalPinToInterrupt(SENSOR2), pulseCounter2, FALLING);
}
void loop()
{
if (WiFi.status() == WL_CONNECTED) {
digitalWrite(LED_BUILTIN, HIGH);
} else {
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
connectToWiFi();
}
currentMillis = millis();
if (currentMillis - previousMillis > interval) {
pulse1Sec1 = pulseCount1;
pulse1Sec2 = pulseCount2;
pulseCount1 = 0;
pulseCount2 = 0;
flowRate1 = ((1000.0 / (currentMillis - previousMillis)) * pulse1Sec1) / calibrationFactor;
flowRate2 = ((1000.0 / (currentMillis - previousMillis)) * pulse1Sec2) / calibrationFactor;
previousMillis = millis();
flowMilliLitres1 = (flowRate1 / 60) * 1000;
flowMilliLitres2 = (flowRate2 / 60) * 1000;
totalMilliLitres1 += flowMilliLitres1;
totalMilliLitres2 += flowMilliLitres2;
json.set("Sensors/FlowRate1", flowRate1);
json.set("Sensors/totalMilliLitres1", totalMilliLitres1);
json.set("Sensors/pulseCount1", pulse1Sec1);
json.set("Sensors/FlowRate2", flowRate2);
json.set("Sensors/totalMilliLitres2", totalMilliLitres2);
json.set("Sensors/pulseCount2", pulse1Sec2);
json.set("Status/isRunning", pulse1Sec1 > 0);
if (flowRate1 > (flowRate2 + (flowRate2 * 0.1))) {
if (!leakDetected) {
leakDetectedTime = currentMillis;
recheckLeak = true;
recheckTime = currentMillis + 5000;
json.set("Status/LeakDetected", true);
json.set("Status/LeakConfirmed", false);
} else {
if (currentMillis - leakDetectedTime >= 5000) {
recheckLeak = false;
json.set("Status/LeakConfirmed", true);
json.set("Status/LeakDetected", true);
} else if (recheckLeak && currentMillis >= recheckTime) {
if (flowRate1 < (flowRate2 + (flowRate2 * 0.1))) {
recheckLeak = false;
}
json.set("Status/LeakDetected", false);
json.set("Status/LeakConfirmed", false);
}
}
leakDetected = true;
} else {
if (leakDetected) {
leakDetected = false;
recheckLeak = false;
}
json.set("Status/LeakDetected", false);
json.set("Status/LeakConfirmed", false);
}
char timeDay[30];
unsigned long currentDay = strftime(timeDay, 30, "%d", &timeinfo);
if (currentDay != previousDay) {
pumpRunningTime = 0;
totalMilliLitres1Today = 0;
previousDay = currentDay;
}
totalMilliLitres1Today += flowMilliLitres1;
if (pulse1Sec1 > 0) {
if (!pumpRunning) {
pumpRunning = true;
pumpStartTime = currentMillis;
}
} else {
if (pumpRunning) {
pumpRunning = false;
pumpRunningTime += currentMillis - pumpStartTime;
}
}
unsigned long totalRunningSeconds = pumpRunningTime / 1000;
runningTimeLog(totalRunningSeconds, totalMilliLitres1Today);
String path = "/";
Firebase.updateNodeSilentAsync(firebaseData, path.c_str(), json);
configTime(gmtOffset_sec, daylightOffset_sec, ntpServer);
}
}