-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkingCode.ino
406 lines (268 loc) · 7.11 KB
/
workingCode.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
// Author Isaac Yeboah
//https://github.com/kojoYeboah53i/smartBIN
// Could be modified or redistibuted as long as
// all rights resevered under the opensource license
//API URL
//http://smartbin-app-1.herokuapp.com/updatebin?bin_id=1
//http://smartbin-app-1.herokuapp.com/updatebin?bin_id=2//
#ifndef Smartbin_h
#define Smartbin_h
#if (ARDUINO >= 100)
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include "SoftwareSerial.h"
SoftwareSerial gsm_(10, 11);
class Smartbin_1
{
public:
Smartbin_1(int pin1, int pin2, int pin3, int pin4, String bat_status); //constructor
~Smartbin_1();
float binStatus();
bool gsmConn();
void boot_(String bat_status);
bool conn_server(String message, String value);
int wait = 2000;
String gsmData;
String gsmConnData = "";
String gsmHttpData ="";
int pin_Gled;
int pin_Rled;
int pin_echo;
int pin_tripn;
String server_message;
String battery;
String server_url;
String id_value;
long duration;
float distance;
private:
};
#endif
// #definiftions //public function Blink definiftions
//constructor
Smartbin_1::Smartbin_1(int pin1, int pin2, int pin3, int pin4, String bat_status) : pin_Gled(pin1), pin_Rled(pin2), pin_tripn(pin3), pin_echo(pin4), battery(bat_status)
{
pinMode(pin_Gled, OUTPUT);
pinMode(pin_Rled, OUTPUT);
pinMode(pin_tripn, OUTPUT);
pinMode(pin_echo, INPUT);
//Serial.println("a new instance is constructed");
//boot_(battery);
}
//destructor
Smartbin_1::~Smartbin_1(void)
{
//destroy
// Serial.println("arduino ram is freed.... ");
}
//binStatus status definiftion
float Smartbin_1::binStatus(){
digitalWrite(pin_tripn, LOW);
delayMicroseconds(2);
digitalWrite(pin_tripn, HIGH);
delayMicroseconds(10);
digitalWrite(pin_tripn, LOW);
duration = pulseIn(pin_echo, HIGH);
distance = duration * 0.034 / 2;
return distance;
}
void Smartbin_1::boot_(String bat_status)
{
if (!gsmConn())
{
Serial.println("Connection to server failed!");
}
else
delay(5);
conn_server("The arduino is on", "value");
}
bool Smartbin_1::gsmConn()
{
gsm_.println("AT+CFUN=1");
delay(10000);
while (gsm_.available())
{
gsmData += (gsm_.read());
}
gsm_.println("AT+CMEE=2");
delay(wait);
while (gsm_.available())
{
gsmData += (gsm_.read());
}
gsm_.println("AT+CGATT=1");
delay(wait + 8000);
while (gsm_.available())
{
gsmData += (gsm_.read());
}
delay(wait);
gsm_.println("AT+SAPBR=3,1,\"CONTYPE\",\"GPRS\"");
delay(wait);
while (gsm_.available())
{
gsmData += (gsm_.read());
}
gsm_.println("AT+SAPBR=3,1,\"APN\",\"internet\"");
delay(wait);
while (gsm_.available())
{
gsmData += (gsm_.read());
}
gsm_.println("AT+SAPBR=1,1");
delay(10000);
while (gsm_.available())
{
gsmData += (gsm_.read());
}
gsm_.println("AT+SAPBR=2,1");
delay(10000);
while (gsm_.available())
{
gsmConnData += (gsm_.read());
}
if ((gsmConnData.indexOf("0,0,0,0") > 0) || (gsmConnData.indexOf("ERROR") > 0))
{
//no internet connection
return false;
}
else
return true;
//Serial.println(gsmData) for troublshooting
}
bool Smartbin_1::conn_server(String message, String value)
{
String gsmHttpData_="";
server_message= message;
id_value = value;
gsm_.println("AT+HTTPINIT");
delay(wait);
while (gsm_.available())
{
gsmHttpData += (gsm_.read());
}
gsm_.print(("AT+HTTPPARA=\"URL\",\"http://ratty53iadu.000webhostapp.com/smartbin_talk.php?"+value+"="));
gsm_.print(server_message);
gsm_.println("\"");
delay(wait);
while (gsm_.available())
{
gsmHttpData += (gsm_.read());
}
gsm_.println("AT+HTTPACTION=0");
delay(wait);
while (gsm_.available())
{
gsmHttpData_ += (gsm_.read());
}
gsm_.println("AT+HTTPTERM");
delay(wait);
while (gsm_.available())
{
gsmHttpData+= (gsm_.read());
}
if(gsmHttpData_.indexOf("OK") >0 ){
return true;
}
else return false;
gsm_.println("AT+CFUN=0");
delay(10000);
while (gsm_.available())
{
gsmHttpData += (gsm_.read());
}
//uncomment this line to debug
//Serial.println(gsmHttpData) for troublshooting
}
//application
Smartbin_1 dustbin_1(13, 4, 6, 9, "");
void setup()
{
Serial.begin(9600);
gsm_.begin(38400);
digitalWrite(dustbin_1.pin_Gled, HIGH);
digitalWrite(dustbin_1.pin_Rled, LOW);
}
void loop()
{
if (!dustbin_1.gsmConn()){
Serial.println("Connection to server failed");
}
float distance_ = dustbin_1.binStatus();
String content_distance = "";
if (distance_ <= 5.0) {
dustbin_1.conn_server("bin_full", "binstatus");
Serial.println("binstatus : FULL");
digitalWrite(dustbin_1.pin_Gled, LOW);
delay(dustbin_1.wait);
digitalWrite(dustbin_1.pin_Rled, HIGH);
delay(dustbin_1.wait);
content_distance = distance_;
dustbin_1.conn_server(content_distance, "content_distance");
content_distance = "";
distance_ =0.0;
}
if (distance_ >= 6.0) {
dustbin_1.conn_server("bin_not_full", "binstatus");
Serial.println("binstatus : NOT FULL");
digitalWrite(dustbin_1.pin_Gled, HIGH);
delay(dustbin_1.wait);
digitalWrite(dustbin_1.pin_Rled, LOW);
delay(dustbin_1.wait);
content_distance = distance_;
dustbin_1.conn_server(content_distance, "content_distance");
content_distance = "";
distance_ =0.0;
}
}
//php back end script
/*
<?php
session_start();
//binstatus
//content_distance
//value
if (isset($_GET['value'])) {
$arduinoVar = $GET['value'];
echo "<H3>The device is on </H3>";
echo "<br>";
echo $arduinoVar;
}
if (isset($_GET['content_distance'])) {
$distance = $GET['content_distance'];
echo "<H3>The distance the trash and the lid is </H3>";
echo "<br>";
echo $distance;
}
//listen for arduino response
if (isset($_GET['binstatus'])){
$binStatus = $GET['binstatus'];
if (!$binStatus==='bin_full') {
$my_file_update = fopen("Not_ful_update.text", "w");
fwrite($my_file_update, "bin one not full");
fclose($my_file_update);
$_message="arduino called";
}
if ($binStatus==='bin_full'){
//code goes here
//API Url
$url = 'http://smartbin-app-1.herokuapp.com/updatebin?bin_id=1';
$ch = curl_init($url);
//The JSON data.
$jsonData = array(
'bin_id_1' => 'full',
);
$jsonDataEncoded = json_encode($jsonData);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
$my_file_update = fopen("full_update.text", "w");
fwrite($my_file_update, "bin one full");
fclose($my_file_update);
$_message="arduino called";
}
}
*/