We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example from lib does not work: #include <WiFi.h> #include <WiFiMulti.h>
WiFiMulti wifiMulti;
void setup() { Serial.begin(115200); delay(10);
wifiMulti.addAP("ssid_from_AP_1", "your_password_for_AP_1"); wifiMulti.addAP("ssid_from_AP_2", "your_password_for_AP_2"); wifiMulti.addAP("domoton1", "nevotondomoton"); 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); } }
E (302) wifi: esp_wifi_scan_start 967 wifi not start WiFi not connected! WiFi not connected! WiFi not connected!
The text was updated successfully, but these errors were encountered:
Try this pull and see if it works. #1322
Sorry, something went wrong.
Yes, it works, thanks!
Hi
I got the same error, but in this line:
int networksLength = WiFi.scanNetworks();
Specifically, it says this:
E (132) wifi: esp_wifi_scan_start 967 wifi not start
I just pulled, but no change.
No branches or pull requests
Example from lib does not work:
#include <WiFi.h>
#include <WiFiMulti.h>
WiFiMulti wifiMulti;
void setup()
{
Serial.begin(115200);
delay(10);
}
void loop()
{
if(wifiMulti.run() != WL_CONNECTED) {
Serial.println("WiFi not connected!");
delay(1000);
}
}
E (302) wifi: esp_wifi_scan_start 967 wifi not start
WiFi not connected!
WiFi not connected!
WiFi not connected!
The text was updated successfully, but these errors were encountered: