forked from ssokol/esp8266
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESP8266.h
600 lines (502 loc) · 12.5 KB
/
ESP8266.h
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
/*
Convenience functions for us with ESP8266 module.
Presumes the 8266 is attached to the hardware Serial port on the Arduino
*/
#include <Arduino.h> // for type definitions
#ifndef ESP8266_h
#define ESP8266_h
//#include <AltSoftSerial.h>
typedef int (*DataCallback)(const char*);
typedef int (*DebugCallback)(const char*);
typedef void (*ConnectCallback)(void);
enum wifiModes { WIFI_MODE_STA = 1, WIFI_MODE_AP, WIFI_MODE_APSTA };
enum wifiErrors {
WIFI_ERR_NONE = 0,
WIFI_ERR_AT,
WIFI_ERR_RESET,
WIFI_ERR_CONNECT,
WIFI_ERR_LINK
};
template <typename S>
class ESP8266 {
public:
// constructor - set link mode and server port
ESP8266(S& serial, int mode = 1, long baudrate = 9600, int debugLevel = 0);
// init / connect / disconnect access point
int initializeWifi(DataCallback dcb, DebugCallback debugcb,
ConnectCallback ccb);
int connectWifi(char* ssid, char* password);
bool disconnectWifi();
// server
bool startServer(int port = 8000, long timeout = 300);
// client
bool startTCPClient(char* ip, int port, long timeout = 300);
bool startUDPClient(char* ip, int port, long timeout = 300);
// discovery beacon
bool enableBeacon(char* device);
bool disableBeacon();
// send data across the link
bool send(char* data);
// process wifi messages - MUST be called from main app's loop
void run();
// informational
char* ip();
int scan(char* out, int max);
private:
S& wifi;
void clearResults();
bool sendData(int chan, char* data);
bool setLinkMode(int mode);
bool startUDPChannel(int chan, char* address, int port);
void processWifiMessage();
bool getIP();
bool getBroadcast();
void debug(char* msg);
bool searchResults(char* target, long timeout, int dbg = 0);
};
#define SVR_CHAN 1
#define BCN_CHAN 2
#define CLI_CHAN 3
#define BUFFER_SIZE 255
#define BEACON_PORT 34807
enum connectMode {
CONNECT_MODE_NONE = 0,
CONNECT_MODE_SERVER,
CONNECT_MODE_CLIENT
};
int _mode;
long _baudrate;
char _ipaddress[15];
char _broadcast[15];
int _port;
char _device[48];
char _ssid[48];
char _password[24];
bool _beacon;
long _beaconInterval;
long _previousMillis;
int _replyChan;
DataCallback _dcb;
DebugCallback _debugcb;
ConnectCallback _ccb;
char _wb[BUFFER_SIZE];
int _wctr = 0;
bool _connected;
int _connectMode;
int _debugLevel = 0;
template <typename S>
ESP8266<S>::ESP8266(S& serial, int mode, long baudrate, int debugLevel)
: wifi(serial) {
_mode = mode;
_baudrate = baudrate;
_debugLevel = debugLevel;
_port = 8000;
_replyChan = 0;
memset(_ipaddress, 0, 15);
memset(_broadcast, 0, 15);
memset(_device, 0, 48);
memset(_ssid, 0, 48);
memset(_password, 0, 24);
_beacon = false;
_beaconInterval = (10000L);
_previousMillis = 0;
_connected = false;
}
template <typename S>
int ESP8266<S>::initializeWifi(DataCallback dcb, DebugCallback debugcb,
ConnectCallback ccb) {
if (dcb) {
_dcb = dcb;
}
if (debugcb) {
_debugcb = debugcb;
}
if (ccb) {
_ccb = ccb;
}
wifi.begin(_baudrate);
wifi.setTimeout(5000);
// delay(500);
clearResults();
// check for presence of wifi module
wifi.println(F("AT"));
delay(500);
if (!searchResults("OK", 1000, _debugLevel)) {
return WIFI_ERR_AT;
}
// delay(500);
// reset WiFi module
wifi.println(F("AT+RST"));
delay(500);
if (!searchResults("ready", 5000, _debugLevel)) {
return WIFI_ERR_RESET;
}
delay(500);
// set the connectivity mode 1=sta, 2=ap, 3=sta+ap
wifi.print(F("AT+CWMODE="));
wifi.println(_mode);
// delay(500);
clearResults();
return WIFI_ERR_NONE;
}
template <typename S>
int ESP8266<S>::connectWifi(char* ssid, char* password) {
strcpy(_ssid, ssid);
strcpy(_password, password);
// set the access point value and connect
wifi.print(F("AT+CWJAP=\""));
wifi.print(ssid);
wifi.print(F("\",\""));
wifi.print(password);
wifi.println(F("\""));
delay(100);
if (!searchResults("OK", 30000, _debugLevel)) {
return WIFI_ERR_CONNECT;
}
// enable multi-connection mode
if (!setLinkMode(1)) {
return WIFI_ERR_LINK;
}
// get the IP assigned by DHCP
getIP();
// get the broadcast address (assumes class c w/ .255)
getBroadcast();
return WIFI_ERR_NONE;
}
template <typename S>
bool ESP8266<S>::disconnectWifi() {}
template <typename S>
bool ESP8266<S>::enableBeacon(char* device) {
// you can only beacon if you're a server
if (_connectMode != CONNECT_MODE_SERVER) return false;
bool ret;
strcpy(_device, device);
ret = startUDPChannel(BCN_CHAN, _broadcast, BEACON_PORT);
_beacon = ret;
return ret;
}
template <typename S>
bool ESP8266<S>::disableBeacon() {
_beacon = false;
}
template <typename S>
bool ESP8266<S>::send(char* data) {
int chan;
if (_connectMode == CONNECT_MODE_SERVER) {
chan = _replyChan;
} else {
chan = CLI_CHAN;
}
return sendData(chan, data);
}
template <typename S>
void ESP8266<S>::run() {
int v;
char _data[255];
unsigned long currentMillis = millis();
if (currentMillis - _previousMillis < _beaconInterval) {
// process wifi messages
while (wifi.available() > 0) {
v = wifi.read();
if (v == 10) {
_wb[_wctr] = 0;
_wctr = 0;
processWifiMessage();
} else if (v == 13) {
// gndn
} else {
_wb[_wctr] = v;
_wctr++;
}
}
} else {
_previousMillis = currentMillis;
if (_beacon == false) return;
// create message text
char* line1 = "{\"event\": \"beacon\", \"ip\": \"";
char* line3 = "\", \"port\": ";
char* line5 = ", \"device\": \"";
char* line7 = "\"}\r\n";
// convert port to a string
char p[6];
itoa(_port, p, 10);
// get lenthg of message text
memset(_data, 0, 255);
strcat(_data, line1);
strcat(_data, _ipaddress);
strcat(_data, line3);
strcat(_data, p);
strcat(_data, line5);
strcat(_data, _device);
strcat(_data, line7);
sendData(BCN_CHAN, _data);
}
}
template <typename S>
bool ESP8266<S>::startServer(int port, long timeout) {
// cache the port number for the beacon
_port = port;
wifi.print(F("AT+CIPSERVER="));
wifi.print(SVR_CHAN);
wifi.print(F(","));
wifi.println(_port);
if (!searchResults("OK", 500, _debugLevel)) {
return false;
}
// send AT command
wifi.print(F("AT+CIPSTO="));
wifi.println(timeout);
if (!searchResults("OK", 500, _debugLevel)) {
return false;
}
_connectMode = CONNECT_MODE_SERVER;
return true;
}
template <typename S>
bool ESP8266<S>::startTCPClient(char* ip, int port, long timeout) {
wifi.print(F("AT+CIPSTART="));
wifi.print(CLI_CHAN);
wifi.print(F(",\"TCP\",\""));
wifi.print(ip);
wifi.print("\",");
wifi.println(port);
delay(100);
if (!searchResults("OK", timeout, _debugLevel)) {
return false;
}
_connectMode = CONNECT_MODE_CLIENT;
return true;
}
template <typename S>
bool ESP8266<S>::startUDPClient(char* ip, int port, long timeout) {
wifi.print(F("AT+CIPSTART="));
wifi.print(CLI_CHAN);
wifi.print(F(",\"UDP\",\""));
wifi.print(ip);
wifi.print("\",");
wifi.println(port);
delay(100);
if (!searchResults("OK", timeout, _debugLevel)) {
return false;
}
_connectMode = CONNECT_MODE_CLIENT;
return true;
}
template <typename S>
char* ESP8266<S>::ip() {
return _ipaddress;
}
template <typename S>
int ESP8266<S>::scan(char* out, int max) {
int timeout = 10000;
int count = 0;
int c = 0;
if (_debugLevel > 0) {
char num[6];
itoa(max, num, 10);
debug("maximum lenthg of buffer: ");
debug(num);
}
wifi.println(F("AT+CWLAP"));
long _startMillis = millis();
do {
c = wifi.read();
if ((c >= 0) && (count < max)) {
// add data to list
out[count] = c;
count++;
}
} while (millis() - _startMillis < timeout);
return count;
}
// *****************************************************************************
// PRIVATE FUNCTIONS BELOW THIS POINT
// *****************************************************************************
// process a complete message from the WiFi side
// and send the actual data payload to the serial port
template <typename S>
void ESP8266<S>::processWifiMessage() {
int packet_len;
int channel;
char* pb;
// if the message is simply "Link", then we have a live connection
if (strncmp(_wb, "Link", 5) == 0) {
// reduce the beacon frequency by increasing the interval
_beaconInterval = 30000; // false;
// flag the connection as active
_connected = true;
// if a connection callback is set, call it
if (_ccb) _ccb();
} else
// message packet received from the server
if (strncmp(_wb, "+IPD,", 5) == 0) {
// get the channel and length of the packet
sscanf(_wb + 5, "%d,%d", &channel, &packet_len);
// cache the channel ID - this is used to reply
_replyChan = channel;
// if the packet contained data, move the pointer past the header
if (packet_len > 0) {
pb = _wb + 5;
while (*pb != ':') pb++;
pb++;
// execute the callback passing a pointer to the message
if (_dcb) {
_dcb(pb);
}
// DANGER WILL ROBINSON - there is no ring buffer or other safety net
// here.
// the application should either use the data immediately or make a copy
// of it!
// do NOT block in the callback or bad things may happen
}
} else {
// other messages might wind up here - some useful, some not.
// you might look here for things like 'Unlink' or errors
}
}
template <typename S>
bool ESP8266<S>::sendData(int chan, char* data) {
// start send
wifi.print(F("AT+CIPSEND="));
wifi.print(chan);
wifi.print(",");
wifi.println(strlen(data));
// send the data
wifi.print(data);
delay(50);
// to debug only
searchResults("OK", 500, _debugLevel);
return true;
}
template <typename S>
bool ESP8266<S>::setLinkMode(int mode) {
wifi.print(F("AT+CIPMUX="));
wifi.println(mode);
delay(500);
if (!searchResults("OK", 1000, _debugLevel)) {
return false;
}
return true;
}
template <typename S>
bool ESP8266<S>::startUDPChannel(int chan, char* address, int port) {
wifi.print(F("AT+CIPSTART="));
wifi.print(chan);
wifi.print(F(",\"UDP\",\""));
wifi.print(address);
wifi.print("\",");
wifi.println(port);
if (!searchResults("OK", 500, _debugLevel)) {
return false;
}
return true;
}
// private convenience functions
template <typename S>
bool ESP8266<S>::getIP() {
char c;
char buf[15];
int dots, ptr = 0;
bool ret = false;
memset(buf, 0, 15);
wifi.println(F("AT+CIFSR"));
delay(500);
while (wifi.available() > 0) {
c = wifi.read();
// increment the dot counter if we have a "."
if ((int)c == 46) {
dots++;
}
if ((int)c == 10) {
// end of a line.
if ((dots == 3) && (ret == false)) {
buf[ptr] = 0;
strcpy(_ipaddress, buf);
ret = true;
} else {
memset(buf, 0, 15);
dots = 0;
ptr = 0;
}
} else if ((int)c == 13) {
// ignore it
} else {
buf[ptr] = c;
ptr++;
}
}
return ret;
}
template <typename S>
bool ESP8266<S>::getBroadcast() {
int i, c, dots = 0;
if (strlen(_ipaddress) < 7) {
return false;
}
memset(_broadcast, 0, 15);
for (i = 0; i < strlen(_ipaddress); i++) {
c = _ipaddress[i];
_broadcast[i] = c;
if (c == 46) dots++;
if (dots == 3) break;
}
i++;
_broadcast[i++] = 50;
_broadcast[i++] = 53;
_broadcast[i++] = 53;
return true;
}
template <typename S>
void ESP8266<S>::debug(char* msg) {
if (_debugcb && (_debugLevel > 0)) {
_debugcb(msg);
}
}
template <typename S>
bool ESP8266<S>::searchResults(char* target, long timeout, int dbg) {
int c;
int index = 0;
int targetLength = strlen(target);
int count = 0;
char _data[255];
memset(_data, 0, 255);
long _startMillis = millis();
do {
c = wifi.read();
if (c >= 0) {
if (dbg > 0) {
if (count >= 254) {
debug(_data);
memset(_data, 0, 255);
count = 0;
}
_data[count] = c;
count++;
}
if (c != target[index]) index = 0;
if (c == target[index]) {
if (++index >= targetLength) {
if (dbg > 1) debug(_data);
return true;
}
}
}
} while (millis() - _startMillis < timeout);
if (dbg > 0) {
if (_data[0] == 0) {
debug("Failed: No data");
} else {
debug("Failed");
debug(_data);
}
}
return false;
}
template <typename S>
void ESP8266<S>::clearResults() {
char c;
while (wifi.available() > 0) {
c = wifi.read();
}
}
#endif