You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The wifi connect loop never ends. The return value from WiFi.begin() is always 6 (WL_DISCONNECTED).
I solved this issue changing the code in DIY_CameraSlider.ino like this:
from WiFi_status = WiFi.begin(ssid, password);
to WiFi.begin(ssid, password); WiFi_status = WiFi.waitForConnectResult();
The wifi connect loop never ends. The return value from
WiFi.begin()
is always 6 (WL_DISCONNECTED
).I solved this issue changing the code in DIY_CameraSlider.ino like this:
from
WiFi_status = WiFi.begin(ssid, password);
to
WiFi.begin(ssid, password); WiFi_status = WiFi.waitForConnectResult();
I found the solution here
The text was updated successfully, but these errors were encountered: