ESP-WiFiSettings icon indicating copy to clipboard operation
ESP-WiFiSettings copied to clipboard

ESP32 does not connect unless restarted through portal

Open frogcrush opened this issue 3 years ago • 1 comments

On multiple ESP32's on multiple different Wi-Fi networks, I cannot get the device to connect to Wifi unless I hit "restart" through the portal interface. If I remove the timeout, it never connects and just fills the serial output with periods.

frogcrush avatar Dec 17 '21 20:12 frogcrush

@frogcrush you can do this:

    WiFiSettings.onConfigSaved  = []() {
      ESP.restart(); // Reboot as soon as config is saved
    };

Will reboot as soon as config is saved.

Just started using this library and I like it very much. Good job @Juerd

NetForces avatar Apr 26 '22 21:04 NetForces

@frogcrush I believe the issue you ran into may have been a problem in the esp32 arduino framework. If this is still relevant, however, please reopen the issue.

Juerd avatar Apr 10 '23 00:04 Juerd