WL_NO_SSID_AVAIL
Posted: Thu Apr 26, 2018 10:24 am
Hello,
Whatever I do, WiFi.status() always returns WL_NO_SSID_AVAIL
Any idea what can be wrong?
Thx,
Whatever I do, WiFi.status() always returns WL_NO_SSID_AVAIL
Any idea what can be wrong?
Thx,
Code: Select all
const 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");
...
}