jtbarrett
Results
2
comments of
jtbarrett
I had the same issue, in `app_wifi.c`'s `event_handler` you have to handle the disconnected event by calling `esp_wifi_connect()` again. Here's a version that works for me: ``` c static void...
@izmmisha , that version retries the initial connection but doesn’t handle disconnects that happen later. If WiFi drops later you have to call `esp_wifi_connect` again. For me it would drop...