mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #693] Configurating while it's connected to the network. #578
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#578
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 @augisbud on GitHub (Aug 7, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/693
Hello, I want to be able to configure wifi and other settings while it's connected to my network. Any help is appreciated.
@augisbud commented on GitHub (Aug 7, 2018):
#256 Solved.
@tablatronix commented on GitHub (Aug 7, 2018):
Well the real solution is the development branch ondemandwebportal example
@augisbud commented on GitHub (Aug 8, 2018):
Well from what I can see it just creates an extra AP with is not what I want. My main goal is to be able to enter the config portal from the network the esp is connected without creating extra AP's.
@augisbud commented on GitHub (Aug 8, 2018):
Is it possible to start the config portal without an extra wifi?
@augisbud commented on GitHub (Aug 8, 2018):
This is what I came up, it will only create an ap if it's not connected to wifi, however it seems to be not working, any help? I am modifying the library itself on line 119 WiFiManager.cpp
@tablatronix commented on GitHub (Aug 8, 2018):
ondemandwebportalstartWebPortal
@augisbud commented on GitHub (Aug 8, 2018):
What do you mean exactly?
@mikekgr commented on GitHub (Aug 8, 2018):
@augisbud
see the example:
https://github.com/tzapu/WiFiManager/blob/development/examples/OnDemandWebPortal/OnDemandWebPortal.ino
@augisbud commented on GitHub (Aug 8, 2018):
Thank you, I'm looking into it
@augisbud commented on GitHub (Aug 8, 2018):
Ok let me get this straight, I need to have the web interface always running alongside a dsc alarm code, i have them both, I'm gonna merge them, but how do I make the web interface always running alongside other code and have mqtt data written to spiffs?
@RobbesU commented on GitHub (Aug 9, 2018):
See this video how to include custom parameters with the WiFiManager. Use (currently) with the development branch. This will run happily next to your logging code (especially on ESP32 where the wifi runs on core 0 and main code loop on core 1. Works for me.
But shouldn't you only have to run wifi setup at startup ?
@augisbud commented on GitHub (Aug 9, 2018):
I have added my items to wifimanager, thank you for the reminder that esp32 is dual core will try on it
@augisbud commented on GitHub (Aug 9, 2018):
I need to access the wifi manager web all the time
@tablatronix commented on GitHub (Aug 9, 2018):
Yeah that is what that example does, web portal only no ap or captive portal, you can start and stop it whenever you want, if you want to share the webserver with your own code, we have not decided on a final solution #461