while wifi

This commit is contained in:
pgp 2021-04-16 15:05:18 +02:00
parent cacf66bafc
commit 301d2b2e75

View file

@ -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();
}