Updated WiFifix
This commit is contained in:
parent
f7a9223b9d
commit
43859b5b96
|
@ -106,8 +106,13 @@ void fixWiFi() {
|
|||
Homie.getLogger() << "Connectivity in problematic state --> " << problemCause << "/n This remained for 2 minutes. Disconnecting WiFi to start over." << endl;
|
||||
problemDetected = 0;
|
||||
problemCause = "";
|
||||
if (WiFi.status() != 0) {
|
||||
WiFi.disconnect();
|
||||
}
|
||||
else if (WiFi.status() == 0) {
|
||||
WiFi.begin();
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (problemCount != 0 && Homie.getMqttClient().connected() || WiFi.status() == 3) {
|
||||
problemCount = 0;
|
||||
|
|
Loading…
Reference in New Issue