-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Closed
Labels
Status: StaleIssue is stale stage (outdated/stuck)Issue is stale stage (outdated/stuck)
Description
I'm trying to run a simple program that connects to a Wi-Fi access point. Quite simply, v1.0.2 can connect to a 2.4GHz access point but v1.0.3 cannot. I'm using the following code snippet, but the WiFiClient
example works just as well for testing, after changing the SSID and password.
constexpr char kSSID[] = "SSID";
constexpr char kPassword[] = "Password";
void setup() {
Serial.begin(115200);
while (!Serial && millis() < 4000) {
// Wait for Serial initialization
}
Serial.printf("Connecting to \"%s\"...", kSSID);
WiFi.begin(kSSID, kPassword);
while (!WiFi.isConnected()) {
Serial.print(".");
delay(500);
}
Serial.println("connected.");
}
void loop() {
}
The program never connects with v1.0.3 but does with v1.0.2.
Matt-PMCT and witnessmenow
Metadata
Metadata
Assignees
Labels
Status: StaleIssue is stale stage (outdated/stuck)Issue is stale stage (outdated/stuck)