-
Notifications
You must be signed in to change notification settings - Fork 13.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Problematic WiFi connection to certain types of AP's #8950
Comments
I'd like to see this response too. I'm also facing same problem. There are routers that it connect perfectly and other simply never connect. |
Try forcing the ESP to only use 802.11g Make sure the router/access point allows clients to connect in "g" mode and thus not set to be "N-only". |
Same here. 321 esp's in 50 locations country-wide, each with a random ISP provided router and well, that makes live interesting. Usually a random NONOSDK version makes the trick. On some sites it was impossible, I had to send them a cheap 2.4 AP to make it work. |
There are other tricks you can try:
|
So, for me, updating the code to include the delay(1000) right after WiFi.begin() appears to result in a reliable connection each time. |
This may not be the right place, but could anyone perhaps point me in the right direction of adding the delay when using WifiManager? |
@wibbit can you confirm (now that some time has passed) that this workaround actually worked for you? I mean, that it wasn't just a coincidence and then the issue reappeared later? @TD-er what is the rationale behind such a workaround? I mean, in the original code without the workaround, there's a loop with many |
I've noticed that whenever you make a call to a function in the WiFi class which actually does something to the hardware, it may not be done yet when the function returns. Anyway, by adding some On some access points you may even need to have automatic reconnect enabled and do like a If I'm not mistaken, MikroTik also uses something similar when using hidden SSID. Lots of newer APs also try to steer you away to another band or to another access point. But when you force 802.11g on the ESP and don't allow 802.11n (on the ESP), those quick disconnects are no longer attempted by those access points. |
@TD-er ok but consider the code without adding the
Note it already has lots of According to your explanation of how The only difference in adding a single |
It is like you're doing this: WiFi.begin("HumptyDumpty", "Not_A_Real_SSID_for_me_at_least");
Serial.print("Connecting");
do
{
delay(500);
Serial.print(".");
} while (WiFi.status() != WL_CONNECTED); With the exception that But I would even go a bit further and do something like this: WiFi.setMode(WIFI_STA);
delay(100);
WiFi.disconnect();
delay(100);
WiFi.begin("HumptyDumpty", "Not_A_Real_SSID_for_me_at_least");
Serial.print("Connecting");
do
{
delay(500);
Serial.print(".");
} while (WiFi.status() != WL_CONNECTED); |
I already do:
before If after that, a |
Well there is one thing you can be sure of and that's that there are bugs in the closed source WiFi code. |
I'm not sure I have much to contribute, but I have been having wifi connection problems on my 8266 (wemos d1 mini) that I haven't been able to sort out either. This board will sometimes connect instantly, other times it may take 20-30 seconds, and other times it takes long enough that I give up. It seems that once it connects to my network it is stable enough, though I haven't left this board on for extended periods of time. No amount of delays seems to make a difference, or any other changes to the basic wifi connection example. My main router is an Asus AX3000, but I also tried connecting to an old D-Link 820L I had in my closet to no avail. An interesting note is that I was playing around with MicroPython and found that it reliably connects to my home wifi within several seconds of starting up. I'm not well-versed in c/cpp but a quick look through the micropython source shows a very similar method of starting the wifi connection. I have tried this on two D1 minis and both show the same wifi inconsistency. |
Feedback here... 362 active esp's, 24/7 in 56 locations, random AP's. Much better now after throwing some delays (c) Td-er But, I didn't notice any change when playing with persistent, setAutoConnect, setAutoReconnect (I'm using true) or disconnect before begin (I'm not using it). It was all delay related. My guess is that after connecting to the AP and getting a valid IP, WiFi.status reports connected, but it's still doing its things (ie DNS), so it needs a delay AFTER the connection has been set. |
Yep, adding a delay will make things a lot faster with WiFi :) |
How much delay do you use? A delay of 3000ms after WiFi.begin() is insufficient to reliably connect to my network. I want to postpone the main loop as little as possible. |
Just waiting 3 sec is absolutely useless. |
I miss the delay AFTER the while |
A delay of up to 750ms after any call to the WiFi library does not result in a consistent and timely connection to the network in my testing. Either all of my hardware has a defect (possible that they were all from the same manufacturing batch), or the 8266 wifi library is inefficient. Unfortunately I don't have enough knowledge of the ecosystem to narrow this down farther. |
I have seen some boards which have really badly tuned WiFi antennas. On such boards you might sometimes get better results when pressing hard with your thumb on the antenna. Another cause for bad WiFi is the power supply. TL;DR |
@wibbit If you haven't gotten this sorted out try reverting to an older version of the 8266 board library in the Arduino ide. I found that 2.5.2 made my wifi connection much more reliable. I had to revert back to 2.4.2 in order to get mDNS to work for me. Depending on what other libraries you use this might be a problem and cause a cascade of reverting to previous versions, but it made my d1 mini useable again. |
Unfortunately the project I was using was making use of the WifiManager codebase, and though I could get the above to work reliably in isolated testing, for the life of me I couldn't work out how to get the delay passed through to the underlying wifi code. I ended up using a wired ethernet option that the project I was playing with also supported. |
Iam wondering if if (!WiFi.localIP().isSet() || !WiFi.isConnected())
{
int ret = WiFi.begin("My_SSID", "My_password");
uint8_t Retries = 5;
while (Retries && WiFi.waitForConnectResult(250) != WL_CONNECTED)
{
Retries--;
}
} I've seen some issues saying that I think we need some piece of generalized wifi code that should work with any AP 😆 |
Arduino/libraries/ESP8266WiFi/src/ESP8266WiFiSTA.cpp Lines 499 to 513 in 1a13ab9
Not 100% sure if it is very similar to adding a |
Basic Infos
Platform
Settings in IDE
Problem Description
I'm having issues getting the ESP8266EX to connect to one of my WiFi AP's, this is an Asus RT-AX86U Pro, it has no issues connecting to an older Asus model that is also providing WiFi for the same SSID.
I've put together a minimal sketch to try and help debug this issue, and the output that I get is as at the end.
FYI, I did try going to the esp8266 forum, however, there appears to be a problem with my registration (no email was received).
I see several other tickets raised relating to something similar #7965 #8299 and I've tried both fixes and changes that appear to have helped them, most notably.
WiFi.setPhyMode(WIFI_PHY_MODE_11G); <- Added both before and after WiFi.begin, which no change
And changing the board to esp8266 generic, and changing to nonos-sdk2.2.1+61 (190313)
MCVE Sketch
#include <ESP8266WiFi.h>
void setup()
{
Serial.begin(115200);
Serial.setDebugOutput(true);
Serial.println();
WiFi.begin("HumptyDumpty", "Not_A_Real_SSID_for_me_at_least");
Serial.print("Connecting");
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println();
Serial.print("Connected, IP address: ");
Serial.println(WiFi.localIP());
Serial.printf("Wi-Fi mode set to WIFI_STA %s\n", WiFi.mode(WIFI_STA) ? "" : "Failed!");
Serial.printf("Connection status: %d\n", WiFi.status());
WiFi.printDiag(Serial);
}
void loop() {}
I have the following information from my router, which may be helpful
Stations List
idx MAC Associated Authorized RSSI PHY PSM SGI STBC MUBF NSS BW Tx rate Rx rate Connect Time
7C:87:CE:BE:20:D4 Yes Yes -56dBm g No No No No 1 20M 54M 1M 00:00:03
So, I don't believe signal strength is an issue.
connected with HumptyDumpty, channel 6
dhcp client start...
ip:192.168.1.250,mask:255.255.255.0,gw:192.168.1.1
switch to channel 1
bcn_timout,ap_probe_send_start
ap_probe_send over, rest wifi status to disassoc
state: 5 -> 0 (1)
rm 0
scandone
state: 0 -> 2 (b0)
state: 2 -> 3 (0)
state: 3 -> 5 (10)
add 0
aid 33
cnt
connected with HumptyDumpty, channel 6
dhcp client start...
ip:192.168.1.250,mask:255.255.255.0,gw:192.168.1.1
switch to channel 1
bcn_timout,ap_probe_send_start
ap_probe_send over, rest wifi status to disassoc
state: 5 -> 0 (1)
rm 0
scandone
no HumptyDumpty found, reconnect after 1s
reconnect
scandone
state: 0 -> 2 (b0)
state: 2 -> 3 (0)
state: 3 -> 5 (10)
add 0
aid 26
cnt
connected with HumptyDumpty, channel 6
dhcp client start...
ip:192.168.1.250,mask:255.255.255.0,gw:192.168.1.1
switch to channel 1
bcn_timout,ap_probe_send_start
pm open,type:2 0
ap_probe_send over, rest wifi status to disassoc
state: 5 -> 0 (1)
rm 0
pm close 7
scandone
state: 0 -> 2 (b0)
state: 2 -> 3 (0)
state: 3 -> 5 (10)
add 0
aid 25
cnt
The text was updated successfully, but these errors were encountered: