-
Notifications
You must be signed in to change notification settings - Fork 1
/
SmartEnergyMeter_RGB.ino
452 lines (382 loc) · 8.35 KB
/
SmartEnergyMeter_RGB.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
/*
Project "Smart Energy Meter" using current sensor arduino and GSM Module and a display
To monitor energy consumption and cost and delelop a pre-paid system with notification and digital control of sort...
Developed by Sakib Ahmed Sumdany & Adnan Sabbir
November 14, 2016.
Released into the public domain.
Dependencies: ACS712 Library by Sakib Ahmed
*/
#include<EEPROM.h>
//Used for GSM module
#include <SoftwareSerial.h>
SoftwareSerial mySerial(7, 8);
unsigned int temp=0,i=0,x=0,k=0;
char str[200],flag1=0,flag2=0;
String bal="";
String initSms ="AT+CMGS=\"+8801xxxxxxxxx\""; //the number to send SMS
String BalanceSms = "This is an SMS from Smart Energy Meter & your balance is ";
//Used for LCD Screen
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, A5, A4, A3, A2);
//For current Sensor
#include "ACS712.h"
float error= 0.05; // initial error of ACS712 sensor
ACS712 ac1(A0, error);
double current=0L;
double power=0L;
double load=0L;
float balance=0.00f;
float unit =0.00f;
float unitPrice =5.00f;
long lastPrint = millis();
long lastDtl = millis();
///////////////////////////
int relay = 2;
bool alert=true;
int pushButton = A1;
long longPressTime = 2;
int btnTime = 0;
//////////////////////////////
void setup(){
pinMode(pushButton, INPUT);
pinMode(relay, OUTPUT);
lcd.begin(16,2);
Serial.begin(9600);
reStoreInfo(); //restore data from arduino's Static memory after reboot/ power failure
printInfo();
lcd.begin(16,2);
Serial.begin(9600);
mySerial.begin(9600);
gsm_init();
mySerial.println("AT+CNMI=2,2,0,0,0");
}
void loop(){
if(balance)
{
currentCalculation();
storeInfo();
printDetails();
printBalance();
digitalWrite(relay,HIGH);
}else{
digitalWrite(relay,LOW);
lcd.clear();
lcd.print("Low Balance");
lcd.setCursor(0,1);
lcd.print("Please Recharge");
delay(500);
}
checkLowBalance();
checkSMS();
userInteraction();
ResetButton();
Serial.flush();
mySerial.flush();
}
void ResetButton()
{
//if(digitalRead(pushButton)==0)
// Serial.println("Reseting");
if(digitalRead(pushButton)==1)
{
btnTime = millis()/1000;
while(digitalRead(pushButton))
{
// Serial.println("Reseting");
lcd.clear();
lcd.println("Reseting");
if((millis()/1000)-btnTime>(longPressTime-1))
{
lcd.clear();
lcd.println("Reset Done");
delay(1000);
balance=00.00f;
unit=00.00f;
for (int i = 0 ; i < EEPROM.length() ; i++) EEPROM.write(i, 0); //clear all EEPROM
storeInfo();
printInfo();
alert=true;
break;
}
}
}
}
void userInteraction()
{
if (Serial.available()>0)
{
char cmd = Serial.read();
Serial.println(cmd);
if(cmd=='R')
{
balance=00.00f;
unit=00.00f;
for (int i = 0 ; i < EEPROM.length() ; i++) EEPROM.write(i, 0); //clear all EEPROM
storeInfo();
printInfo();
}
if(cmd=='U') {
balance+=1000.00f;
printInfo();
alert = true;
}
if(cmd=='G') {
unit+=10.00f;
printInfo();
}
Serial.flush();
}
}
void checkLowBalance()
{
if(balance < 20 && alert) //notify customer about low balance
{
sendSms("Your Balance is Below 20TK, Please recharge to avoid disconnection");
alert = false;
}
}
void printBalance()
{
if((millis() - lastPrint)>5000) //print balance and usage every 5 seconds without using delay()
{
printInfo();
lastPrint = millis();
}
}
void currentCalculation()
{
current = ac1.getACcurrent(); //power calculations
power=current*220.00L;
load =(power/(1000.0L*3600.0L)); // instantanious load
unit+=load; //Cumulated load or power consumption
balance -=load*unitPrice; // balance adjustment
}
//printing...
void printInfo()
{
Serial.print("\n\tBalance left: ");
Serial.print(balance,4);
Serial.print("tk Total Use: ");
Serial.print(unit,5);
Serial.println(" Units\n");
lcd.clear();
lcd.print("Balance:");
lcd.print(balance,2);
lcd.print("TK");
lcd.setCursor(0,1);
lcd.print("Use:");
lcd.print(unit,4);
lcd.print(" KWtt");
delay(100);
}
void printDetails()
{
Serial.print("\t");
Serial.print(current);
Serial.print(" Amps, ");
Serial.print(power);
Serial.print(" Watt, ");
Serial.print(unit,5);
Serial.println(" KWatt-hour\t");
lcd.clear();
lcd.print("Current:");
lcd.print(current,3);
lcd.print("Amps");
lcd.setCursor(0,1);
lcd.print("Power:");
lcd.print(power);
lcd.print(" Watt");
}
//eeprom functions
void storeInfo()
{
// EEPROM[100]=unit;
// EEPROM[0]=balance;
EEPROM.put(0,unit);
EEPROM.put(100,balance);
}
void reStoreInfo()
{
// unit= EEPROM[100];
// balance= EEPROM[0];
EEPROM.get(0,unit);
EEPROM.get(100,balance);
}
/////////////////////////////////////////////////
//All the methods for GSM and SMS System
/////////////////////////////////////////////////
void gsm_init()
{
lcd.clear();
lcd.print("Finding Module..");
Serial.println("Finding Module..");
boolean at_flag=1;
while(at_flag)
{
mySerial.println("AT");
while(mySerial.available()>0)
{
if(mySerial.find("OK"))
at_flag=0;
}
delay(1000);
}
lcd.clear();
lcd.print("Module Connected..");
Serial.println("Module Connected..");
delay(1000);
lcd.clear();
lcd.print("Disabling ECHO");
Serial.print("Disabling ECHO");
boolean echo_flag=1;
while(echo_flag)
{
mySerial.println("ATE0");
while(mySerial.available()>0)
{
if(mySerial.find("OK"))
echo_flag=0;
}
delay(1000);
}
lcd.clear();
lcd.print("Echo OFF");
Serial.print("\tEcho OFF");
delay(1000);
lcd.clear();
lcd.print("Finding Network..");
Serial.println("\t Finding Network..");
boolean net_flag=1;
while(net_flag)
{
mySerial.println("AT+CPIN?");
while(mySerial.available()>0)
{
if(mySerial.find("+CPIN: READY"))
net_flag=0;
}
delay(1000);
}
lcd.clear();
lcd.print("Network Found..");
Serial.println("Network Found..");
delay(1000);
lcd.clear();
}
void sendSms(String text){
init_sms();
Serial.println("Sending:");
send_data(text);
send_sms();
}
void init_sms()
{
mySerial.println("AT+CMGF=1");
delay(200);
mySerial.println(initSms);
delay(200);
}
void send_sms()
{
mySerial.write(26);
message_sent();
}
void send_data(String message)
{
mySerial.println(message);
Serial.println(message);
delay(200);
}
void message_sent()
{
lcd.clear();
lcd.print("Message Sent.");
Serial.println("Message Sent.");
delay(1000);
//mySerial.flush();
}
void checkSMS(){
mySerialEvent();
balanceCheck();
if(temp==1)
{
decode_message();
send_confirmation_sms();
}
}
void mySerialEvent()
{
while(mySerial.available())
{
char ch=(char)mySerial.read();
str[i++]=ch;
if(ch == '*')
{
temp=1;
lcd.clear();
lcd.print("Message Received");
Serial.print("Message Received:\t");
// Serial.println(str);
delay(500);
break;
}
}
}
void decode_message()
{
x=0,k=0,temp=0;
while(str[x]!='#')
{
x++;
}
x++;
bal="";
while(str[x]!='*')
{
bal+=str[x];
x++;
}
Serial.println(bal.toInt());
}
void send_confirmation_sms()
{
int recharge_amount=bal.toInt();
balance+=recharge_amount;
lcd.clear();
lcd.print("Energy Meter ");
lcd.setCursor(0,1);
lcd.print("Recharged:");
lcd.print(recharge_amount);
delay(2000);
String text1="Energy meter recharged TK:";
text1+=recharge_amount;
String text2= text1+". Total Balance "+(String)balance;
sendSms(text2);
Serial.print( " SENT:" );
Serial.print(text1);
Serial.println(text2);
temp=0;
i=0;
x=0;
k=0;
delay(1000);
}
void balanceCheck(){
x=0,k=0;
String Stringcheck = "";
while(x<i)
{
Stringcheck+=str[x];
x++;
}
// Serial.println("Checking");
// Serial.println(Stringcheck);
if(Stringcheck.indexOf("Balance?")>0)
{
sendSms("Total Balance "+(String)balance);
for(int c=0;c<i;c++)
{
str[c]='a';
}
}
}