mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #634] Variable configuration from Wifi Manager (SSID, Password, IP, GW, Subnet, dns, etc) #530
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#530
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 @adamrabbani on GitHub (Jun 28, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/634
Hello @tablatronix
i want know what variable i will use..
if ESP disconnected from wifi, i want call Wifi.begin with SSID and Password in the "loop()" from
Variable Configuration in WifiManager.. and other variable like (IP, GW, Subnet, dns, etc)
Thanks
@tablatronix commented on GitHub (Jun 28, 2018):
You just call begin this is esp8266 related not wifimanager
@adamrabbani commented on GitHub (Jun 28, 2018):
@tablatronix
just call WiFi.begin()? without variable?
because if ESP accidentally disconnect from WiFi, i want using setting configuration from wifimanager..
i dont want reset the ESP and configuration again...
Thanks
@tablatronix commented on GitHub (Jun 28, 2018):
They are one in the same
@tablatronix commented on GitHub (Jun 28, 2018):
Esp automatically reconnects to wifi on its own, also. But you might still want to do your own control loop just in case, but I am pretty sure autoconnect works fairly well
@adamrabbani commented on GitHub (Jun 28, 2018):
@tablatronix
Oh I See...Thank you for clarifying that.