Page 1 of 1

Slow Wifi Connection

Posted: Sun Sep 02, 2018 9:47 am
by mojesp32s
Hi

I am having problem with slow connection with my ESP32.

It takes around 10 seconds to connect. Is this normal or is there any other way to speed it up?

ESP-12 was much faster(light speed)! And the code is the same as for ESP32s.

Code: Select all

void WifiSettings() {

      WiFi.begin(ssid, passssss);

      int waitTimeLimit = 15;
      unsigned int startTime = millis()/1000;
      unsigned int endTime= millis()/1000;

      while (WiFi.status() != WL_CONNECTED && (endTime - startTime) <= waitTimeLimit) {
        endTime = millis()/1000;
      }
      
      if (WiFi.status() == WL_CONNECTED) {
        #ifdef DEBUG_WIFI
          Serial.println(String("WIFI - Connected to ") + WiFi.SSID());
        #endif
      }
}