diff --git a/src/main.cpp b/src/main.cpp index 283ac4f..4e2771c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -471,6 +471,7 @@ void start_wifiAP() { } void wifi_AP() { // ajouter menu vitesse et fréquence d'écriture + while (true) { WiFiClient client = server.available(); // listen for incoming clients if (client) { // if you get a client, @@ -519,6 +520,7 @@ void wifi_AP() { // ajouter menu vitesse et fréquence d'écriture client.stop(); Serial.println("Client Disconnected."); } + } ESP.restart(); }