From 59bd30a80dd12d564680c580e565c464255cd3b4 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Sun, 14 Jun 2015 16:12:40 +0100 Subject: [PATCH] Don't wait for a connection to an AP when we're supposed to be the AP. --- .../ESP8266WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino | 3 --- 1 file changed, 3 deletions(-) diff --git a/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino b/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino index 9bd390064..1a1130747 100644 --- a/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino +++ b/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino @@ -55,9 +55,6 @@ void setup() { /* You can remove the password parameter if you want the AP to be open. */ WiFi.softAP(ssid, password); - while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } - - Serial.println("done"); IPAddress myIP = WiFi.softAPIP(); Serial.print("AP IP address: "); Serial.println(myIP);