-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainCoordinatorBis.pde
405 lines (281 loc) · 8.55 KB
/
mainCoordinatorBis.pde
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
#include <WaspXBee802.h>
#include <Wasp3G.h>
/* ----- Configuration ----- */
#define USB_LOGS 1 // 0 : No log, 1 : Descriptives logs, 2 : Verbose
// XBee Module
int XBEE_MAX_SUBROUTINE_TRY = 2;
int XBEE_DELAY_BETWEEN_SUBROUTINE_RETRY = 5000;
// 3G Module
char* _3G_APN_NAME = "free";
char* _3G_SIM_PIN = "1234";
int _3G_MAX_SUBROUTINE_TRY = 2;
int _3G_DELAY_BETWEEN_SUBROUTINE_RETRY = 3000;
char* _3G_WEB_SERVER_IP = "31.35.122.165"; // Paul : 92.167.78.214, Ju : 31.35.122.165
// Others
char* TIME_BEFORE_REBOOT = "23:59:00:00";
uint32_t LISTENING_TIME = 60000;
// Variables
int i;
uint8_t answer, confirmation;
char packet[100], frame[100], packetScratched[5][10];
char* subPacket;
// At Waspmote boot
void setup() {
#if USB_LOGS > 0
USB.println(F("Setup :"));
USB.println(F(" > Booting Waspmote ..."));
#endif
RTC.ON(); // Needed for sleeping after failure to connect 3G
// ZigBee
#if USB_LOGS > 0
USB.println(F(" > > Booting XBee module ..."));
#endif
// Activation with retries of XBee module
i = XBEE_MAX_SUBROUTINE_TRY;
while (xbee802.ON() != 0 && i > 0) {
#if USB_LOGS > 0
USB.print(F(" > > > Error. Retry in "));
USB.print(XBEE_DELAY_BETWEEN_SUBROUTINE_RETRY / 1000);
USB.println(F("s ..."));
#endif
delay(XBEE_DELAY_BETWEEN_SUBROUTINE_RETRY);
i--;
}
// Activation of XBee module failed
if (i == 0) {
#if USB_LOGS > 0
USB.println(F(" > > XBee module failed to boot."));
USB.println(F(" > > Rebooting Waspmote ..."));
#endif
PWR.reboot();
}
// XBee module activated
else if (i > 0) {
#if USB_LOGS > 0
USB.println(F(" > > XBee module booted."));
#endif
}
// 3G
// Activation with retries of 3G module
_3G.set_APN(_3G_APN_NAME);
#if USB_LOGS > 0
USB.println(F(" > > APN set."));
#endif
// Try multiples times to boot 3G module
#if USB_LOGS > 0
USB.println(F(" > > Booting 3G module ..."));
#endif
i = _3G_MAX_SUBROUTINE_TRY;
while (_3G.ON() != 1 && i > 0) {
#if USB_LOGS > 0
USB.print(F(" > > > Error. Retry in "));
USB.print(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY / 1000);
USB.println(F("s ..."));
#endif
delay(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY);
i--;
}
if (i == 0) {
#if USB_LOGS > 0
USB.println(F(" > > 3G module failed to boot."));
USB.println(F(" > > Rebooting Waspmote ..."));
#endif
PWR.reboot();
}
else if (i > 0) {
#if USB_LOGS > 0
USB.println(F(" > > 3G module booted."));
#endif
}
// Try multiples times to log in to 3G network
#if USB_LOGS > 0
USB.println(F(" > > Setting SIM PIN ..."));
#endif
i = _3G_MAX_SUBROUTINE_TRY;
while (_3G.setPIN(_3G_SIM_PIN) != 1 && i > 0) {
#if USB_LOGS > 0
USB.print(F(" > > > Error. Retry in "));
USB.print(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY / 1000);
USB.println(F("s ..."));
#endif
delay(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY);
i--;
}
if (i == 0) {
#if USB_LOGS > 0
USB.println(F(" > > SIM PIN setting failed."));
USB.println(F(" > > Rebooting Waspmote ..."));
#endif
PWR.reboot();
}
else if (i > 0) {
#if USB_LOGS > 0
USB.println(F(" > > SIM PIN set."));
#endif
}
// Check multiples times if connection is established
#if USB_LOGS > 0
USB.println(F(" > > Checking network ..."));
#endif
i = _3G_MAX_SUBROUTINE_TRY;
while (_3G.check(60) != 1 && i > 0) {
#if USB_LOGS > 0
USB.print(F(" > > > Error. Retry in "));
USB.print(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY / 1000);
USB.println(F("s ..."));
#endif
delay(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY);
i--;
}
if (i == 0) {
#if USB_LOGS > 0
USB.println(F(" > > Network checking failed."));
USB.println(F(" > > Rebooting Waspmote ..."));
#endif
PWR.reboot();
}
else if (i > 0) {
#if USB_LOGS > 0
USB.println(F(" > > Network checked."));
#endif
}
// Setup a reboot 24 hours later for security on memory
#if USB_LOGS > 0
USB.println(F("Sleeping :"));
USB.print(F(" > > Reboot set in "));
USB.println(TIME_BEFORE_REBOOT);
#endif
RTC.setAlarm1(TIME_BEFORE_REBOOT, RTC_OFFSET, RTC_ALM1_MODE2);
#if USB_LOGS > 0
USB.println(F(" > Waspmote booted."));
#endif
}
/* ----- Main Program ----- */
void loop() {
/* ----- Listening Network ----- */
#if USB_LOGS > 0
USB.println(F("----- New loop -----"));
USB.println(F("Listening network :"));
#endif
// Wait for incoming transmission
#if USB_LOGS > 0
USB.print(F(" > Listening for incoming transmission for "));
USB.print(LISTENING_TIME / 1000);
USB.println(F("s ..."));
#endif
answer = xbee802.receivePacketTimeout(LISTENING_TIME);
// Format received packet
if (answer == 0) {
#if USB_LOGS > 0
USB.println(F(" > Transmission received."));
#endif
delay(2000);
confirmation = xbee802.send(xbee802._srcMAC, "ok");
if (confirmation == 0) {
#if USB_LOGS > 0
USB.println(F(" > Confirmation sent."));
#endif
/* ----- Formatting Data ----- */
#if USB_LOGS > 0
USB.println(F("Formatting data :"));
#endif
for (i = 0; i < xbee802._length; i++) {
packet[i] = xbee802._payload[i];
}
#if USB_LOGS > 0
USB.print(F(" > Packet received : "));
USB.println(packet);
#endif
#if USB_LOGS > 1
USB.print(F(" > Pre-uint8t_t*-to-char*-conversion packet : "));
USB.println(xbee802._payload, xbee802._length);
USB.print(F(" > Packet length : "));
USB.println(xbee802._length, DEC);
USB.print(F(" > Packet MAC source : "));
for (i = 0; i < 8; i++) {
USB.printHex(xbee802._srcMAC[i]);
}
USB.println();
#endif
subPacket = strtok(packet, "/");
i = 0;
while (subPacket != NULL) {
strcpy(packetScratched[i], subPacket);
subPacket = strtok(NULL, "/");
i++;
}
sprintf(frame, "?id=%s&bat=%s&tmp=%s&lum=%s&hum=%s", packetScratched[0], packetScratched[1], packetScratched[2], packetScratched[3], packetScratched[4]);
#if USB_LOGS > 0
USB.print(F(" > Frame created : "));
USB.println(frame);
#endif
/* ----- Sending Data ----- */
#if USB_LOGS > 0
USB.println(F("Sending data :"));
#endif
if (_3G.showsNetworkMode() > 1) {
#if USB_LOGS > 0
USB.println(F(" > 3G connection checked."));
#endif
char request[200];
sprintf(request, "GET /reception%s HTTP/1.1\r\nHost: %s\r\nContent-Length: 0\r\n\r\n", frame, _3G_WEB_SERVER_IP);
// Try multiples times to reach the URL
#if USB_LOGS > 0
USB.println(F(" > Reaching URL ..."));
#endif
i = _3G_MAX_SUBROUTINE_TRY;
while (_3G.readURL(_3G_WEB_SERVER_IP, 80, request) != 1 && i > 0) {
#if USB_LOGS > 0
USB.print(F(" > > Error. Retry in "));
USB.print(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY / 1000);
USB.println(F("s ..."));
#endif
delay(_3G_DELAY_BETWEEN_SUBROUTINE_RETRY);
i--;
}
if (i == 0) {
#if USB_LOGS > 0
USB.println(F(" > Reaching URL failed."));
USB.println(F(" > Rebooting Waspmote ..."));
#endif
PWR.reboot();
}
else if (i > 0) {
#if USB_LOGS > 0
USB.println(F(" > URL reached."));
#endif
}
}
else {
#if USB_LOGS > 0
USB.println(F(" > 3G connection can no longer be established."));
USB.println(F(" > Rebooting Waspmote ..."));
#endif
PWR.reboot();
}
}
else {
#if USB_LOGS > 0
USB.println(F(" > Confirmation not sent."));
USB.println(F(" > Rebooting Waspmote..."));
#endif
PWR.reboot();
}
}
// Received nothing
else if (answer != 0) {
#if USB_LOGS > 0
USB.println(F(" > No transmission received or defective ones."));
#endif
}
// Reboot after 24 hours
if (intFlag & RTC_INT) {
#if USB_LOGS > 0
USB.println(F("Reboot :"));
USB.println(F(" > An entire cycle has already occured."));
USB.println(F(" > Rebooting Waspmote..."));
#endif
RTC.clearAlarmFlag();
PWR.reboot();
}
}