So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By Renaud
#75612 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");
 ...
}