-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathc_wifi.h
409 lines (312 loc) · 12.2 KB
/
c_wifi.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
/***************************************************
Copyright (C) 2016 Steffen Ochs
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
HISTORY: Please refer Github History
QUELLE:
- Wifi Event Handling: https://github.com/esp8266/Arduino/pull/2119
https://github.com/kzyapkov/Arduino-ESP8266/blob/master/doc/esp8266wifi/generic-class.md
****************************************************/
/*
WiFiEventHandler onStationModeConnected(std::function<void(const WiFiEventStationModeConnected&)>);
WiFiEventHandler onStationModeDisconnected(std::function<void(const WiFiEventStationModeDisconnected&)>);
WiFiEventHandler onStationModeAuthModeChanged(std::function<void(const WiFiEventStationModeAuthModeChanged&)>);
WiFiEventHandler onStationModeGotIP(std::function<void(const WiFiEventStationModeGotIP&)>);
WiFiEventHandler onStationModeDHCPTimeout(std::function<void(void)>);
WiFiEventHandler onSoftAPModeStationConnected(std::function<void(const WiFiEventSoftAPModeStationConnected&)>);
WiFiEventHandler onSoftAPModeStationDisconnected(std::function<void(const WiFiEventSoftAPModeStationDisconnected&)>);
*/
// 0 = WIFI_OFF, 1 = WIFI_STA, 2 = WIFI_AP, 3 = WIFI_AP_STA
//++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Configuration + Start AP-Mode
void set_AP() {
// AP beim Start initialiseren
WiFi.mode(WIFI_AP_STA); // während AP wird ständig versucht mit STA zu verbinden
//WiFi.mode(WIFI_AP); // nur AP, keine Verbindungsversuche
delay(100); // sauberes Umschalten
IPAddress local_IP(192,168,66,1), gateway(192,168,66,1), subnet(255,255,255,0);
WiFi.softAPConfig(local_IP, gateway, subnet);
WiFi.softAP(sys.apname.c_str(), APPASSWORD, 5); // Channel 5
IPRINTP("AP: "); DPRINTLN(sys.apname);
IPRINTP("AP IP: "); DPRINTLN(WiFi.softAPIP());
// CaptivePortal
/* Setup the DNS server redirecting all the domains to the apIP */
//dnsServer.setErrorReplyCode(DNSReplyCode::NoError);
//dnsServer.start(DNS_PORT, "*", local_IP);
wifi.mode = 6; //0 // Verbindungsaufbau
wifi.disconnectAP = false; // wait with disconnect
// Use multiwifi for connecting
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++
// WiFi Handler
void onWifiConnect(const WiFiEventStationModeGotIP& event) {
DPRINTLN();
IPRINTP("STA: "); DPRINTLN(WiFi.SSID());
IPRINTP("IP: "); DPRINTLN(WiFi.localIP());
if (!MDNS.begin(sys.host.c_str())) { // Start the mDNS responder for esp8266.local
IPRINTP("Error MDNS!");
} else {
IPRINTP("mDNS started");
MDNS.addService("http", "tcp", 80); // Add service to MDNS-SD
}
// noch nicht in STA
if (WiFi.getMode() > 1) wifi.disconnectAP = true; // Close AP-Mode
wifi.mode = 1; // WiFi-Mode = STA
//connectToMqtt(); // Start MQTT, verschoben in wifimonitoring
// Änderung an den Wifidaten: muss sortiert und gespeichert werden?
if (holdssid.hold && WiFi.SSID() == holdssid.ssid) {
wifi.neu = 2; // neue Wifi-Daten erhalten und verbunden
} else if (WiFi.SSID() != wifi.savedssid[0]){
wifi.neu = 1; // nach Verbindungsverlust neues Netz aus dem Speicher benutzt: Speicher umsortieren
}
holdssid.hold = 0; // Handler für neues Wifi zurücksetzen
holdssid.connect = 0; // Handler für neues Wifi zurücksetzen
wifi.timerAP = 0;
wifi.takeAP = 0;
wifi.savecount = 0; // Liste beim nächsten Verlust von vorne rotieren (liste wurde umsortiert)
if (update.state == 0) update.state = -1; // Server abfragen //nicht bei Restart zwischen Update
// falls Startscreen noch aktiv
if (question.typ == SYSTEMSTART) {
displayblocked = false; // Close Start Screen
question.typ = NO;
}
}
void onWifiDisconnect(const WiFiEventStationModeDisconnected& event) {
Serial.println("wifi: disconnect");
// Neuaufbau
if (holdssid.hold == 2) {} // neue Wifi-Daten Verbindungsprozess
else wifi.mode = 6; // Verbindungsverlust im Betrieb
//pmqttClient.disconnect(); // geschieht automatisch
wifi.mqttreconnect = 0;
}
void onsoftAPDisconnect(const WiFiEventSoftAPModeStationDisconnected& event) {
Serial.print("NO AP: ");
Serial.println(WiFi.getMode());
}
void onDHCPTimeout() {
//Serial.println("nicht verbunden");
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Configuration WiFi
void set_wifi() {
//WiFi.hostname(sys.host);
String routername = sys.host;
char* ourname = &routername[0];
wifi_station_set_hostname(ourname);
IPRINTLN("Hostname: " + sys.host);
WiFi.disconnect(); // wenn das, dann kein reconnection nach neustart
//WiFi.persistent(false); // wenn das davor, wird Flash nicht bei disconnect gelöscht
WiFi.persistent(false); // damit werden aber auch nie Daten in den Wifi Flash gespeichert
// Include WiFi Handler
wifiConnectHandler = WiFi.onStationModeGotIP(onWifiConnect);
wifiDisconnectHandler = WiFi.onStationModeDisconnected(onWifiDisconnect);
softAPDisconnectHandler = WiFi.onSoftAPModeStationDisconnected(onsoftAPDisconnect);
holdssid.hold = 0;
holdssid.connect = false;
wifi.savecount = 0;
wifi.reconnecttime = 0; // Verbindungsaufbau beim Start
if (checkResetInfo()) {
question.typ = SYSTEMSTART;
drawConnect(); // Start screen
}
set_AP(); // Start AP-Mode
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Connect WiFi with saved Data
void connectWiFi() {
WiFi.begin(holdssid.ssid.c_str(), holdssid.pass.c_str());
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Get RSSI
void get_rssi() {
wifi.rssi = WiFi.RSSI();
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Stop AP-Mode
void stopAP() {
//WiFi.softAPdisconnect(); // sollte eigentlich auch stoppen
//WiFi.disconnect(); // nicht benötigt
WiFi.mode(WIFI_STA);
delay(100);
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Take AP-Mode
void takeAP() {
WiFi.mode(WIFI_AP);
delay(100);
Serial.println("wifi: AP");
wifi.mode = 2;
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// ModifyWifi
void modifywifi() {
if (wifi.neu || ((wifi.savedlen > 1) && (WiFi.SSID() != wifi.savedssid[0]))) {
if (!modifyconfig(eWIFI, wifi.neu)) {
IPRINTPLN("f:wifi"); // Failed to save
} else {
IPRINTPLN("s:Wifi"); // Saved
loadconfig(eWIFI,0); // temporären Speicher aktualisieren
}
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Stop WiFi
void stop_wifi() {
if (wifi.mode == 4) {
wifi.turnoffAPtimer = millis();
wifi.mode = 3;
return;
}
if (millis() - wifi.turnoffAPtimer > 1000) {
Serial.println("wifi: stop");
pmqttClient.disconnect();
wifi_station_disconnect();
wifi_set_opmode(NULL_MODE);
wifi_set_sleep_type(MODEM_SLEEP_T);
wifi_fpm_open();
wifi_fpm_do_sleep(0xFFFFFFF);
//WiFi.disconnect();
//delay(100); // leider notwendig
//WiFi.mode(WIFI_OFF);
delay(100); // leider notwendig
wifi.mode = 0;
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// MultiWifi
void multiwifi() {
if (millis() - wifi.reconnecttime > 15000 || wifi.reconnecttime == 0) { // Wifi Daten vorhanden
// wifi.reconnecttime == 0 bei Systemstart
wifi.reconnecttime = millis();
Serial.println("wifi: multi");
if (wifi.savecount < wifi.savedlen) { // Daten durchlaufen
holdssid.ssid = wifi.savedssid[wifi.savecount];
holdssid.pass = wifi.savedpass[wifi.savecount];
Serial.print("wifi: ");
Serial.println(holdssid.ssid);
connectWiFi();
wifi.savecount++;
} else {
// Liste einmal durchgegangen, dann AP starten
// Listenzähler nicht zurücksetzen, sonst Verbindungsversuch bei Aufruf von Wifiscan (Idle status)
wifi.takeAP = true;
}
} //"Warte"
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// WiFi Monitoring
void wifimonitoring() {
// nach Verbindungsversuch zuerst Status "Disconnect" (3x) danach wechsel in "No SSID".
// Status wenn komplett in AP: "Disconnect"
// nach 5 min nochmal multiwifi durchführen
// Bei Eingabe neuer Wifi-Daten (setnetwork) (egal ob AP oder STA)
if (holdssid.hold == 1) { // neue Verbindung
if (millis() - holdssid.connect > 1000) { // mit Verzögerung um den Request zu beenden
holdssid.hold = 2; // anzeigen, dass neue Verbindung
Serial.println("wifi: new");
wifi.mode = 7; // offen
connectWiFi();
}
} else if (holdssid.hold == 2) { // nicht im disconnect-handle, sonst neu-Prozess unterbrochen
if (millis() - holdssid.connect > 15000) {
holdssid.hold = 0;
wifi.mode = 6;
Serial.println("wifi: timeout");
}
}
// CaptivePortal
// dnsServer.processNextRequest();
// Wifi-Mode Control
switch (wifi.mode) {
case 1: // STA-Mode
MDNS.update();
// STA etabliert, AP abschalten, wenn keiner mehr verbunden
if (wifi.disconnectAP) {
uint8_t client_count = wifi_softap_get_station_num();
if (!client_count) {
wifi.disconnectAP = false;
stopAP();
IPRINTPLN("wifi: STA");
}
}
// Verzögerte Speicher-Aktion: neue Daten speichern und sortieren oder nur sortieren
if (wifi.neu > 0) {
modifywifi();
wifi.neu = 0;
}
// MQTT (re-)aktivieren
if (wifi.mqttreconnect && millis() - wifi.mqttreconnect > 30000) { // Reaktivieren nach Verbindungsverlust
connectToMqtt();
}
else if (iot.P_MQTT_on && !pmqttClient.connected() && !wifi.mqttreconnect) { // Aktivieren nach Config-Änderung oder Systemstart
connectToMqtt();
}
break;
case 2: // AP-Mode
if (wifi.timerAP > 0 && (millis() - wifi.timerAP > 300000)) {
wifi.mode = 6;
wifi.savecount = 0; // Liste von vorne beginnen
wifi.takeAP = 0;
}
break;
case 3: // Wifi-Stop-Prozess (zweistufig)
case 4:
stop_wifi();
break;
case 5: // Integriert im Restart-Prozess, Disconnect vor restart
break;
case 6: // Verbindungsaufbau
if (!wifi.takeAP) {
multiwifi();
} else { // aufgeben und in AP
takeAP();
// 5-Min-Timer
wifi.timerAP = millis();
}
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
String connectionStatus (int which)
{
switch ( which )
{
case WL_CONNECTED:
return "Connected";
break;
case WL_NO_SSID_AVAIL:
return "Network not availible";
break;
case WL_CONNECT_FAILED:
return "Wrong password";
break;
case WL_IDLE_STATUS:
return "Idle status";
break;
case WL_DISCONNECTED:
return "Disconnected";
break;
default:
return "Unknown";
break;
}
}
void EraseWiFiFlash() {
//CONFIG_WIFI_SECTOR 0x7E
// https://github.com/igrr/atproto/blob/master/target/esp8266/config_store.c
noInterrupts();
if (spi_flash_erase_sector(0x7E) == SPI_FLASH_RESULT_OK)
{
Serial.println(F("[FLASH] Wifi clear"));
delay(10);
}
interrupts();
}