-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.ino
605 lines (458 loc) · 12.4 KB
/
app.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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
/*
* Read the readme.txt file for details about the project.
*
*
*/
#include <SoftwareSerial.h>
SoftwareSerial mySerial(11, 10); // RX, TX
char data;
int open_ = 8;
int close_ = 7;
int third = 9;
String stringOne, stringTwo;
void send_sms( String barrier_off) ;
void send_sms1( String barrier_off) ;
void send_sms2( String barrier_off) ;
void reboot();
void spit_all() ;
int sms_sensorValue ;
int sms_sensorValue1 ;
int sms_sensorValue2 ;
bool sms_is_present = false;
bool sms_is_present1 = false;
bool sms_is_present2 = false;
bool sms_start = false;
bool sms_start1 = false;
bool sms_start2 = false;
bool msg = false;
bool msg_power = false;
bool msg_control = false;
bool sent = false;
bool is_sent = false;
bool is_sent_power = false;
bool is_sent_control = false;
int sensorValue ;
int sensorValue1 ;
int sensorValue2 ;
int sensorValue3 ;
bool is_present = false;
bool is_present1 = false;
bool is_present2 = false;
bool is_present3 = false;
bool start = false;
bool start1 = false;
bool start2 = false;
bool start3 = false;
const int clear_pins[] = {2, 3, 4, 5, A3, A4, A5 };
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
while (!Serial)
{
; // wait for serial port to connect. Needed for native USB port only
}
for (int i = 0; i < 9 ; i++){
pinMode(clear_pins[i], INPUT_PULLUP);
}
pinMode(13, OUTPUT);
pinMode(third, OUTPUT);
pinMode(open_, OUTPUT);
pinMode(close_, OUTPUT);
digitalWrite(open_, HIGH); // turn the LED on (HIGH is the voltage level)
digitalWrite(close_, HIGH);
digitalWrite(third, HIGH);
Serial.println("Ready !!!");
delay(10000);
// set the data rate for the SoftwareSerial port
mySerial.begin(4800);
mySerial.println("AT");
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.println("AT+CMGF=0"); // Configuring TEXT mode
delay(2000);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.println("AT+CMGF=1"); // Configuring TEXT mode
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
sms_sensorValue = digitalRead(A4);
if (sms_sensorValue == 0) {
// Serial.println("ECG power restored at destination-B1 B1");
send_sms("destination-B1 B1 System Turned On");
spit_all();
send_sms1("destination-B1 B1 System Turned On");
spit_all();
send_sms2("destination-B1 B1 System Turned On");
sms_sensorValue = "";
}
delay(5000);
sms_sensorValue2 = digitalRead(A3);
if (sms_sensorValue2 == 0) {
// Serial.println("destination-B1 B1 Control Box has been closed");
send_sms("destination-B1 B1 Control Box has been closed");
spit_all();
send_sms1("destination-B1 B1 Control Box has been closed");
spit_all();
send_sms2("destination-B1 B1 Control Box has been closed");
sms_sensorValue2 = "";
}
delay(10000);
sms_sensorValue1 = digitalRead(A5);
if (sms_sensorValue1 == 0) {
// Serial.println("destination-B1 B1 barrier turned on ");
send_sms("destination-B1 B1 barrier turned on ");
spit_all();
send_sms1("destination-B1 B1 barrier turned on ");
spit_all();
send_sms2("destination-B1 B1 barrier turned on ");
sms_sensorValue1 = "";
}
// sms_sensorValue = digitalRead(A5);
sms_is_present = true;
sms_is_present1 = true;
sms_is_present2 = true;
is_sent = true;
is_sent_power = true;
is_sent_control = true;
Serial.println("ready to try");
}
void loop() {
sensorValue = digitalRead(2);
sensorValue1 = digitalRead(3);
sensorValue2 = digitalRead(4);
sensorValue3 = digitalRead(5);
if (Serial.available()) {
stringOne = Serial.readString();
stringOne.trim();
if (stringOne == "open") {
digitalWrite(open_, LOW); // turn the LED on (HIGH is the voltage level)
digitalWrite(close_, HIGH);
digitalWrite(third, HIGH);
delay(1000); // wait for a second
digitalWrite(open_, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("o");
}
if (stringOne == "close") {
digitalWrite(close_, LOW); // turn the LED on (HIGH is the voltage level)
digitalWrite(open_, HIGH);
digitalWrite(third, HIGH);
delay(1000); // wait for a second
digitalWrite(close_, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("c");
}
digitalWrite(13, LOW);
if (stringOne == "third") {
digitalWrite(close_, HIGH); // turn the LED on (HIGH is the voltage level)
digitalWrite(open_, LOW);
digitalWrite(third, LOW);
delay(1000);
digitalWrite(third, HIGH);
Serial.println("t");
}
}
{
if (sensorValue > 0) {
is_present = false;
// digitalWrite(13, HIGH);
// delay(3000);
} else {
digitalWrite(13, LOW);
start = true;
is_present = true;
}
if (sensorValue1 > 0) {
digitalWrite(13, LOW);
is_present1 = false;
} else {
start = true;
is_present = true;
}
if (sensorValue2 > 0) {
digitalWrite(13, LOW);
is_present2 = false;
// digitalWrite(13, HIGH);
// delay(3000);
} else {
start1 = true;
is_present1 = true;
}
if (sensorValue3 > 0) {
digitalWrite(13, LOW);
is_present3 = false;
// digitalWrite(13, HIGH);
// delay(3000);
} else {
start3 = true;
is_present3 = true;
}
//sends count only after sensor stops reading
if (start && !is_present ) {
start = false;
Serial.println("a");
digitalWrite(13, HIGH);
delay(3000);
sensorValue = -1;
sensorValue1 = -1;
sensorValue2 = -1;
sensorValue3 = -1;
}
if (start1 && !is_present1 ) {
start1 = false;
Serial.println("b");
digitalWrite(13, HIGH);
delay(3000);
sensorValue = -1;
sensorValue1 = -1;
sensorValue2 = -1;
sensorValue3 = -1;
}
if (start2 && !is_present2 ) {
start2 = false;
Serial.println("q");
digitalWrite(13, HIGH);
delay(3000);
sensorValue = -1;
sensorValue1 = -1;
sensorValue2 = -1;
sensorValue3 = -1;
}
if (start3 && !is_present3 ) {
start3 = false;
Serial.println("d");
digitalWrite(13, HIGH);
delay(3000);
sensorValue = -1;
sensorValue1 = -1;
sensorValue2 = -1;
sensorValue3 = -1;
}
}
sms_sensorValue = digitalRead(A5);
if (sms_sensorValue == 0) {
// spit_all();
msg = true; //connected
// is_sent = true;
sms_start = true;
sms_is_present = true; //loop break
digitalWrite(13, HIGH);
} else {
digitalWrite(13, LOW);
sms_is_present = false; //loop break
is_sent = false; //connected
msg = false;
}
if (sms_start && !sms_is_present ) {
sms_start = false;
delay(5000);
// Serial.println("destination-B1 B1 barrier turned off ");
send_sms(" destination-B1 B1 barrier turned off ");
delay(5000);
spit_all() ;
send_sms1(" destination-B1 B1 barrier turned off ");
spit_all() ;
delay(5000);
send_sms2(" destination-B1 B1 barrier turned off ");
sms_sensorValue = "";
}
if ( msg && !is_sent) {
// Serial.println("barrier turned on ");
send_sms("destination-B1 B1 barrier turned on ");
delay(5000);
spit_all();
send_sms1("destination-B1 B1 barrier turned on ");
delay(5000);
spit_all();
send_sms2("destination-B1 B1 barrier turned on ");
is_sent = true;
}
sms_sensorValue1 = digitalRead(A4);
if (sms_sensorValue1 == 0) {
msg_power = true; //connected
sms_start1 = true;
sms_is_present1 = true; //loop break
digitalWrite(13, HIGH);
} else {
digitalWrite(13, LOW);
sms_is_present1 = false; //loop break
is_sent_power = false; //connected
msg_power = false;
}
if (sms_start1 && !sms_is_present1 ) {
sms_start1 = false;
// Serial.println("Light off at destination-B1 and running on UPS");
send_sms("Light off at destination-B1 B1 and running on UPS");
delay(5000);
spit_all() ;
send_sms1("Light off at destination-B1 B1 and running on UPS");
delay(5000);
spit_all() ;
send_sms2("Light off at destination-B1 B1 and running on UPS");
sms_sensorValue1 = "";
}
if ( msg_power && !is_sent_power) {
// Serial.println("ECG power restored at destination-B1 B1");
send_sms("ECG power restored at destination-B1 B1");
delay(5000);
spit_all();
send_sms1("ECG power restored at destination-B1 B1");
delay(5000);
spit_all();
send_sms2("ECG power restored at destination-B1 B1");
is_sent_power = true;
}
sms_sensorValue2 = digitalRead(A3);
if (sms_sensorValue2 == 0) {
msg_control = true; //connected
sms_start2 = true;
sms_is_present2 = true; //loop break
digitalWrite(13, HIGH);
} else {
digitalWrite(13, LOW);
sms_is_present2 = false; //loop break
is_sent_control = false; //connected
msg_control = false;
}
if (sms_start2 && !sms_is_present2 ) {
sms_start2 = false;
// Serial.println("destination-B1 B1 Control Box has been tempared with");
send_sms("destination-B1 B1 Control Box has been tempared with");
delay(5000);
// reboot();
spit_all() ;
send_sms1("destination-B1 B1 Control Box has been tempared with");
delay(5000);
spit_all() ;
send_sms2("destination-B1 B1 Control Box has been tempared with");
sms_sensorValue2 = "";
}
// reboot();
if ( msg_control && !is_sent_control) {
// Serial.println("destination-B1 B1 Control Box has been closed");
send_sms("destination-B1 B1 Control Box has been closed");
spit_all();
delay(5000);
send_sms1("destination-B1 B1 Control Box has been closed");
spit_all();
delay(5000);
send_sms2("destination-B1 B1 Control Box has been closed ");
// spit_all() ;// reboot();
is_sent_control = true;
}
// spit_all();
}
void send_sms( String barrier_off) {
/****************************************************************/
/*********************/
//send text message
/***********************/
Serial.println("#");
mySerial.println("AT+CMGF=1"); // Configuring TEXT mode
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.println("AT+CMGS=\"+233244769694\"");
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.print(barrier_off); //text content
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.write(26);
//reboot() ;
}
void send_sms1( String barrier_off) {
/****************************************************************/
/*********************/
//send text message
/***********************/
Serial.println("#");
mySerial.println("AT+CMGF=1"); // Configuring TEXT mode
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.println("AT+CMGS=\"+233542235971\"");
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.print(barrier_off); //text content
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.write(26);
//reboot() ;
}
void send_sms2( String barrier_off) {
/****************************************************************/
/*********************/
//send text message
/***********************/
Serial.println("#");
mySerial.println("AT+CMGF=1"); // Configuring TEXT mode
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.println("AT+CMGS=\"+233203401300\"");
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.print(barrier_off); //text content
delay(200);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.write(26);
//reboot() ;
}
void reboot() {
mySerial.println("AT+CFUN=0");
delay(2000);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.println("AT+CFUN=1");
delay(2000);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
}
void spit_all() {
mySerial.println("AT");
delay(2000);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
mySerial.println("AT");
delay(2000);
while (mySerial.available())
{
Serial.write(mySerial.read());
}
}