-
Notifications
You must be signed in to change notification settings - Fork 2
/
CBTgeyser..ino
584 lines (407 loc) · 12.7 KB
/
CBTgeyser..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
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
/*
Version 2.0- Nov 26 2020
Atanu, implemented with SSL, aws certificates and Blynk api key
*/
#include <Arduino.h>
#include <WiFiClientSecure.h>
#include <BlynkSimpleEsp32_SSL.h>
#include "SPIFFS.h"
#include "FS.h"
#include "./credentials_ankita.h"
#include "./certs.h"
#include <WiFi.h>
#include <ArduinoOTA.h>
#include <ArduinoJson.h>
#include <StreamString.h>
#include <TimeLib.h>
#include <WidgetRTC.h>
#include <MQTTClient.h>
#define DEFAULT_MIN 10 // min delay
#define DEFAULT_MAX 30 // max delay
#define DEFAULT_TIMER 600000L //10 min // default auto-switch off , 6 min
#define MULTIPLIER 60000L // 1 min // slider value is multiplied by this.
#define CLOCKCHECK 300000L // 5 min // slider value is multiplied by this.
#define TOHOUR 60
int timerId_updateplots;
bool isHigh=false;
WidgetLED led1(V22);
int incrementPinValue2=0;
WidgetRTC rtc;
// for Alexa skill Geyser Control
MQTTClient client = MQTTClient(1024);
WiFiClientSecure net = WiFiClientSecure();
bool msgReceived=false;
int recdDuration=0;
int statusValue=-1;
bool fromBlynk=false;
int days=0; // todays day
int hours=0; // current hour
BlynkTimer timer_updateplots,timer_T;
int pinValue=0,pinValue2=0;
int total_t=0; // total time
unsigned long currenttime=0;
#define HEARTBEAT_INTERVAL 300000 // 5 Minutes
int ledPin=4; // relay pin on ESP32
void updateRemaining(float average)
{
StaticJsonDocument<1024> jsonDoc;
char jsonBuffer[1024];
float rounded = ((int)(average * 100 + .5) / 100.0);
JsonObject stateObj = jsonDoc.createNestedObject("state");
JsonObject reportedObj = stateObj.createNestedObject("reported");
reportedObj["remaining"] = (pinValue2 -incrementPinValue2);
reportedObj["total"] = rounded;
serializeJson(jsonDoc, jsonBuffer);
client.publish(AWS_IOT_TOPIC, jsonBuffer);
}
void receivedDuration()
{
StaticJsonDocument<1024> jsonDoc;
char jsonBuffer[1024];
JsonObject stateObj = jsonDoc.createNestedObject("state");
JsonObject reportedObj = stateObj.createNestedObject("reported");
if (fromBlynk) {
JsonObject desiredObj = stateObj.createNestedObject("desired");
desiredObj["duration"] = recdDuration;
}
else
{
pinValue2=recdDuration;
Blynk.virtualWrite (V24, pinValue2);
Blynk.virtualWrite(V23,pinValue2);
}
reportedObj["duration"] = recdDuration;
serializeJson(jsonDoc, jsonBuffer);
client.publish(AWS_IOT_TOPIC, jsonBuffer);
}
void switchOnsendJsonToAWS()
{
StaticJsonDocument<1024> jsonDoc;
char jsonBuffer[1024];
JsonObject stateObj = jsonDoc.createNestedObject("state");
JsonObject reportedObj = stateObj.createNestedObject("reported");
reportedObj["onOroff"] = HIGH;
reportedObj["duration"] = recdDuration;
reportedObj["remaining"] =recdDuration ; // initial value
if (fromBlynk) {
JsonObject desiredObj = stateObj.createNestedObject("desired");
desiredObj["duration"] = recdDuration;
desiredObj["onOroff"] = HIGH;
}
serializeJson(jsonDoc, jsonBuffer);
client.publish(AWS_IOT_TOPIC, jsonBuffer);
pinValue2=recdDuration;
isHigh=HIGH;
update_App(); // update the Blynk widgets
}
void switchOffsendJsonToAWS()
{
StaticJsonDocument<1024> jsonDoc;
char jsonBuffer[1024];
JsonObject stateObj = jsonDoc.createNestedObject("state");
JsonObject reportedObj = stateObj.createNestedObject("reported");
JsonObject desiredObj = stateObj.createNestedObject("desired");
reportedObj["onOroff"] = LOW;
reportedObj["remaining"] = 0;
reportedObj["duration"] = DEFAULT_MIN;
if (fromBlynk) {
desiredObj["duration"] = DEFAULT_MIN;
desiredObj["onOroff"] = LOW;
}
serializeJson(jsonDoc, jsonBuffer);
client.publish(AWS_IOT_TOPIC, jsonBuffer);
isHigh=LOW;
update_App();
}
void update_App() // Button
{
if ( fromBlynk )
return;
pinValue = isHigh;
Serial.print("V21 Button value is: ");
Serial.println(pinValue);
digitalWrite (ledPin, pinValue); // for relay
if (pinValue){
led1.on();
currenttime = millis() ;
Blynk.virtualWrite (V24, pinValue2);// remaining time is same as initial duration
}
else {
led1.off ();
unsigned long diff = (millis()- currenttime);
pinValue2=int(diff/MULTIPLIER);
incrementPinValue2=0;
pinValue2=DEFAULT_MIN;
Blynk.virtualWrite (V24, 0); // remaining time to zero keep consistency with Alexa IOT shadow
}
Blynk.virtualWrite(V23,pinValue2);
}
void startOTA() { // Start the OTA service
ArduinoOTA.setHostname(OTAName);
ArduinoOTA.onStart([]() {
Serial.println("Start");
});
ArduinoOTA.onEnd([]() {
Serial.println("\r\nEnd");
});
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
});
ArduinoOTA.onError([](ota_error_t error) {
Serial.printf("Error[%u]: ", error);
if (error == OTA_AUTH_ERROR)
Serial.println("Auth Failed");
else if (error == OTA_BEGIN_ERROR)
Serial.println("Begin Failed");
else if (error == OTA_CONNECT_ERROR)
Serial.println("Connect Failed");
else if (error == OTA_RECEIVE_ERROR)
Serial.println("Receive Failed");
else if (error == OTA_END_ERROR)
Serial.println("End Failed");
});
ArduinoOTA.begin();
Serial.println("OTA ready\r\n");
}
// AWS IOT
void connectToAWS()
{
// Configure WiFiClientSecure to use the AWS certificates we generated
net.setCACert(AWS_CERT_CA);
net.setCertificate(AWS_CERT_CRT);
net.setPrivateKey(AWS_CERT_PRIVATE);
// Connect to the MQTT broker on the AWS endpoint we defined earlier
client.begin(AWS_IOT_ENDPOINT, 8883, net);
client.onMessage(mqttCallback);
// Try to connect to AWS and count how many times we retried.
int retries = 0;
Serial.println("Connecting to AWS IOT");
while (!client.connect(DEVICE_NAME) && retries < AWS_MAX_RECONNECT_TRIES) {
Serial.print(".");
delay(100);
retries++;
}
// Make sure that we did indeed successfully connect to the MQTT broker
// If not we just end the function and wait for the next loop.
if(!client.connected()){
Serial.println(" Timeout!");
return;
}
// If we land here, we have successfully connected to AWS!
// And we can subscribe to topics and send messages.
Serial.println("Connected!");
}
// msqtt subscribe to delta
void mqttCallback (String &topic, String &payload) {
StaticJsonDocument<1024> doc;
// Test if parsing succeeds.
DeserializationError error = deserializeJson(doc, payload);
if (error) {
Serial.print(F("deserializeJson() failed: "));
return;
}
//serializeJsonPretty(doc, Serial);
int found = payload.indexOf ( 'onOroff');
if ( found == -1)
statusValue=-1;
else
statusValue=doc["state"]["onOroff"];
recdDuration=doc["state"]["duration"];
if ( recdDuration == NULL )
recdDuration=DEFAULT_MIN;
msgReceived=true;
fromBlynk=false;
}
void setup() {
Serial.begin(115200);
if(!SPIFFS.begin()){
Serial.println("SPIFFS Mount Failed");
return;
}
pinMode (ledPin,OUTPUT);
digitalWrite (ledPin, LOW); // change for relay
timerId_updateplots= timer_updateplots.setInterval(MULTIPLIER, updateplots);
pinValue2=DEFAULT_MIN;
total_t=readFile(SPIFFS, FILE_NAME);
Blynk.begin(bAuth, MySSID, MyWifiPassword);
setSyncInterval(10 * 60); // Sync interval in seconds (10 minutes)
// Display digital clock every 5 min
timer_T.setInterval(CLOCKCHECK, timeCheck);
// connect to AWS IOT
connectToAWS();
client.subscribe(AWS_IOT_TOPIC_SUB);
startOTA();
Blynk.virtualWrite (V24, pinValue2);
Blynk.virtualWrite (V23, pinValue2);
Blynk.virtualWrite(V21,LOW);
digitalWrite (ledPin, LOW); // change for relay
led1.off();
}
//Code copied from blynk program
bool offOrOn()
{
if ( pinValue2==incrementPinValue2){
digitalWrite (ledPin, LOW);// switch off relay
Blynk.virtualWrite(V21,!pinValue);
led1.off();
incrementPinValue2=0;
pinValue=0;
pinValue2=recdDuration=DEFAULT_MIN;
fromBlynk=true;
// change duration back to default value in Blynk
Blynk.virtualWrite(V23,pinValue2);
switchOffsendJsonToAWS();
return true;
}
return false;
}
// update plots every minutes and also update the slider as time goes on
void updateplots() {
char duration[100];
if (pinValue) { // led is on
Blynk.virtualWrite (V24, pinValue2 -incrementPinValue2 );
Blynk.virtualWrite ( V29, total_t); // duration in hrs V29
Blynk.virtualWrite ( V28, incrementPinValue2); // duration
sprintf ( duration, "%d", total_t);
writeFile(SPIFFS, FILE_NAME, duration); // persist to file
if (offOrOn())
return;
total_t ++;
if (days)
updateRemaining((float)total_t/days);
incrementPinValue2++;
}
else { // when led is off
if ( days == 1 && hours <4 && total_t !=0 ) {
total_t=0; // recycle the duration, month beginning
sprintf ( duration, "%d", total_t);
writeFile(SPIFFS, FILE_NAME, duration); // persist to file
updateRemaining((float)total_t/days);
}
}
if (days)
Blynk.virtualWrite(V25,(float)total_t/days); // average usage in min in this month
else
Blynk.virtualWrite(V25,"..."); // average usage in min in this month
}
// finding days and date from RTC
void timeCheck()
{
// You can call hour(), minute(), ... at any time
// Please see Time library examples for details
days=day();
hours=hour();
}
BLYNK_WRITE(V21) // Button
{
pinValue = param.asInt(); // assigning incoming value from pin V21 to a variable
Serial.print("V21 Button value is--: ");
Serial.println(pinValue);
digitalWrite (ledPin, pinValue); // for relay
fromBlynk=true;
if (pinValue){
led1.on();
currenttime = millis();
recdDuration = pinValue2;
switchOnsendJsonToAWS();
}
else {
led1.off ();
unsigned long diff = (millis()- currenttime);
pinValue2=int(diff/MULTIPLIER);
incrementPinValue2=0;
pinValue2=recdDuration=DEFAULT_MIN;
switchOffsendJsonToAWS();
}
Blynk.virtualWrite(V24,pinValue2);
Blynk.virtualWrite(V23,pinValue2);
}
BLYNK_WRITE(V23) // Horizontal step
{
pinValue2 = param.asInt(); // assigning incoming value from pin V23 to a variable
incrementPinValue2=0;
recdDuration = pinValue2;
Blynk.virtualWrite(V24,pinValue2);
fromBlynk=true;
receivedDuration();
}
BLYNK_CONNECTED() {
rtc.begin();
}
// Store to SPIFFS
void writeFile(fs::FS &fs, const char * path, const char * message){
Serial.printf("Writing file: %s\n", path);
File file = fs.open(path, FILE_WRITE);
if(!file){
Serial.println("- failed to open file for writing");
return;
}
if(file.println(message)){
Serial.println("- file written ");
} else {
Serial.println("- frite failed");
}
file.close();
}
int readFile(fs::FS &fs, const char * path){
int i=0;
String c;
Serial.printf("Reading file: %s\n", path);
File file = fs.open(path);
if(!file || file.isDirectory()){
Serial.println("- failed to open file for reading");
return 0;
}
Serial.println("- read from file:");
while(file.available())
{
c = file.readStringUntil('\n');
}
Serial.printf("read value=%s\n",c);
file.close();
return (c.toInt());
}
void WifiCheck() { // when Wifi is disconnected , reconnect
int NAcounts=0;
WiFi.disconnect();
WiFi.begin(MySSID, MyWifiPassword);
while (WiFi.status() != WL_CONNECTED && NAcounts < 7 )
{
delay(500);
Serial.print(".");
NAcounts ++;
}
if(WiFi.status() != WL_CONNECTED){//during lost connection, print dots
esp_sleep_enable_timer_wakeup(1 * 60L * 1000000L);
esp_deep_sleep_start();
Serial.print("...");
}
if(WiFi.status() != WL_CONNECTED){
ESP.restart();
}
Blynk.begin(bAuth, MySSID, MyWifiPassword);
Blynk.notify(" Geyser Automation is reconnected to Wifi !");
}
void loop() {
ArduinoOTA.handle();
if ( Blynk.connected()){
Blynk.run();
timer_updateplots.run();
timer_T.run();
}
else {
Blynk.connect(100);
if ( !Blynk.connected())
WifiCheck();
}
client.loop();
if (msgReceived == true) {
msgReceived=false;
if ( statusValue == 1 )
switchOnsendJsonToAWS ();
else if (statusValue==0)
switchOffsendJsonToAWS();
else // only duration received
receivedDuration();
}
}