mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #1038] Need help vith DEV configportal. #885
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#885
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @usane1 on GitHub (Apr 17, 2020).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1038
Hi!
I need a little help with nonblocking configportal.
I've managed to make my project from the nonblocking example, but there is one more thing i want to achieve. I don't know if its possible. So far if i set up the wifi then it works fine. If the router failing and recovering the ESP reconnect fine and it doesnt bother the main loop.
However, can i achive somehow that if the program in the ESP start without wifi (router shutdown) then if the wifi is up after the program started, the ESP connect to it if it was configured earlier?
@tablatronix commented on GitHub (Apr 20, 2020):
ESP already does that automatically, you can just check for connected now and then. But esp autoreconnect in the background for you
@tablatronix commented on GitHub (Apr 20, 2020):
if(WiFi.status() == WL_CONNECTED)Or you can set startconfigportal to false and use autoconnect
@usane1 commented on GitHub (Apr 21, 2020):
Thank you.