-->
Page 1 of 1

WL_NO_SSID_AVAIL

PostPosted: Thu Apr 26, 2018 10:24 am
by Renaud
Hello,

Whatever I do, WiFi.status() always returns WL_NO_SSID_AVAIL
Any idea what can be wrong?
Thx,

Code: Select allconst char* ssid = "mySSID";
const char* password = "myPassword";
void setup(void){
  Serial.begin(115200);
 
  WiFi.begin(ssid, password);
  Serial.print("Connecting");
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println(" connected");
 ...
}

Re: WL_NO_SSID_AVAIL

PostPosted: Fri Apr 27, 2018 3:48 am
by Renaud
Fixed, my SSID was invalid (_ or . not accepted)