Skip to content

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

Closed
smacyas opened this issue May 24, 2018 · 8 comments
Closed

WiFiMulti does not work again after update #1432

smacyas opened this issue May 24, 2018 · 8 comments
Labels
Status: Stale Issue is stale stage (outdated/stuck)

Comments

@smacyas
Copy link

smacyas commented May 24, 2018

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!

@CarloSandoval
Copy link

CarloSandoval commented May 28, 2018

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...
E (8117) wifi: esp_wifi_scan_start 967 wifi not start
WiFi not connected!
WiFi not connected!
WiFi not connected!
WiFi not connected!

@smacyas
Copy link
Author

smacyas commented May 28, 2018

It works with the previuos version of WiFi library, and no with the new one

@iqbal-hassan
Copy link

Bisected and found the offending commit 69f72ec.

@CarloSandoval
Copy link

where can I find the previous version of the WiFi library?

@timkoers
Copy link
Contributor

timkoers commented Jun 4, 2018

@CarloSandoval by looking at the commit history you can find all the changes that came with past commits and browse their files.

@CarloSandoval
Copy link

@timkoers Thank you

@stale
Copy link

stale bot commented Aug 1, 2019

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.

@stale stale bot added the Status: Stale Issue is stale stage (outdated/stuck) label Aug 1, 2019
@stale
Copy link

stale bot commented Aug 15, 2019

This stale issue has been automatically closed. Thank you for your contributions.

@stale stale bot closed this as completed Aug 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: Stale Issue is stale stage (outdated/stuck)
Projects
None yet
Development

No branches or pull requests

4 participants