forked from patience4711/read-APSystems-YC600-QS1-DS3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Start_WiFi.ino
69 lines (61 loc) · 2.57 KB
/
Start_WiFi.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
// ************************************************************************************
// * START wifi
// ************************************************************************************
void start_wifi() {
WiFi.softAPdisconnect(true);
WiFi.mode(WIFI_STA);
WiFi.hostname("ECU");
WiFi.mode(WIFI_STA); // geen ap op dit moment
// we gaan 10 pogingen doen om te verbinden
// met de laatst gebruikte credentials
while (WiFi.status() != WL_CONNECTED) {
delay(500);
//Serial.print("*");
event+=1;
if (event==10) {break;}
}
// als het verbinden is mislukt gaan we naar het configportal
if (event>9) {
event=0;
start_portal(); // stel het portal in
}
//Serial.print(F("# connection attempts = ")); //Serial.println(event);
event=0; // we kunnen door naar de rest
checkFixed();
start_asyserver();
}
//// *************************************************************************
//// SERVER STARTEN
// ********************************************************************
// check if there must come a static ip
// ********************************************************************
void checkFixed() {
// we comer here only when wifi connected
char GATE_WAY[16]="";
IPAddress gat=WiFi.gatewayIP();
sprintf(GATE_WAY, "%d.%d.%d.%d", gat[0], gat[1], gat[2], gat[3]);
//DebugPrint("GATE_WAY in checkFixed = nu: "); //DebugPrintln(String(GATE_WAY));
//DebugPrint("static_ip in checkFixed = nu: "); //DebugPrintln(String(static_ip));
if (static_ip[0] != '\0' && static_ip[0] != '0') {
//DebugPrintln("we moeten een static ip hebben Custom STA IP/GW/Subnet");
IPAddress _ip,_gw,_sn(255,255,255,0); // declaratie
_ip.fromString(static_ip);
_gw.fromString(GATE_WAY);// if (ssid != "") {
WiFi.config(_ip, _gw, _sn);
//DebugPrintln(WiFi.localIP());
} else {
//DebugPrintln("trying to get rid of wificonfig");
WiFi.config(0u, 0u, 0u);
}
}
void loginBoth(AsyncWebServerRequest *request, String who) {
//String authFailResponse = "<h2>login failed <a href='/'>click here</a></h2>";
if (who == "admin" ){
const char* www_realm = "login as administrator.";
if (!request->authenticate("admin", pswd)) return request->requestAuthentication();
}
if (who == "both" ){
const char* www_realm = "login as administrator or user.";
if (!request->authenticate("admin", pswd) && !request->authenticate("user", userPwd)) return request->requestAuthentication();
}
}