-
Notifications
You must be signed in to change notification settings - Fork 7.6k
WiFiMulti does not work again after update #1432
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi, I'm using the latest version of Arduino IDE, and using the same example of Wifi multi and getting the same error too. This is my output: Connecting Wifi... |
It works with the previuos version of WiFi library, and no with the new one |
Bisected and found the offending commit 69f72ec. |
where can I find the previous version of the WiFi library? |
@CarloSandoval by looking at the commit history you can find all the changes that came with past commits and browse their files. |
@timkoers Thank you |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. |
This stale issue has been automatically closed. Thank you for your contributions. |
Does not work example WiFi Multi with the latest Arduino IDE:
#include <WiFi.h>
#include <WiFiMulti.h>
WiFiMulti wifiMulti;
void setup()
{
Serial.begin(115200);
delay(10);
wifiMulti.addAP("ssid", "pswrd");
Serial.println("Connecting Wifi...");
if(wifiMulti.run() == WL_CONNECTED) {
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
}
void loop()
{
if(wifiMulti.run() != WL_CONNECTED) {
Serial.println("WiFi not connected!");
delay(1000);
}
}
Connecting Wifi...
E (300) wifi: esp_wifi_scan_start 967 wifi not start
WiFi not connected!
WiFi not connected!
WiFi not connected!
WiFi not connected!
The text was updated successfully, but these errors were encountered: