mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #696] Question about WIFI_AP_STA #582
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#582
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 @laercionit on GitHub (Aug 10, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/696
First of all congratulations on LIB, really did a great job.
I researched a lot, but unfortunately I did not find any information about it.
I would like to keep the project as WIFI_AP_STA.
Is it possible with WifiManager to keep the STA and AP together?
@tablatronix commented on GitHub (Aug 10, 2018):
What exactly do you mean ?
@laercionit commented on GitHub (Aug 10, 2018):
I apologize if it was not clear.
I wonder if WifiManager has any option to perform the wifi connection as STA and keep the AP mode open. If you do not have access to the wifi router, you could continue to access AP mode without necessarily having to boot the system.
@tablatronix commented on GitHub (Aug 10, 2018):
Yes you can either use ondemandwebportal or ondemandconfigportal with non blocking mode
This is in development branch
@rtek1000 commented on GitHub (Nov 19, 2018):
Hello, I also want to congratulate you for the great job, in conjunction with OTA is perfect!
I would like to know if it already has some progress on this because sometimes the location does not have a router, and it is difficult to ask the user to turn their smartphone into an Access Point.
Any predictions for this feature?
@rtek1000 commented on GitHub (Nov 19, 2018):
I also tested esp-link, it's a great job as well, but I have some issues in making UDP connections, esp-link can provide great ideas, esp-link operates as a configuration page for a router, and can also operate on AP mode.
https://github.com/jeelabs/esp-link
@tablatronix commented on GitHub (Nov 19, 2018):
I really have no idea what this issue is about or what people are asking for , wm supports ap and st mode already
@rtek1000 commented on GitHub (Nov 19, 2018):
Hello, actually supports AP, but how to use the configuration page to set the SSID and password to AP mode?
@tablatronix commented on GitHub (Nov 19, 2018):
you set it in code, if you want to add custom parameters to allow user to change then you have to add that yourself with custom params and save it then read it and apply it.
wm does not do any saving to flash by default, programmer has to do it if they want to save stuff to flash, we do not decide where memory goes or gets saved
flash, spiffs, sd card etc
@rtek1000 commented on GitHub (Nov 19, 2018):
Thank you, I was able to identify a problem with the ESP-01 modules that I was testing, they are new, but the 25Q80 memories seem to be operating in a dubious way, I do not know if they are fake 25Q80. So I installed a 25Q64 instead of 25Q80, and I get faster and more stable. I will continue to experiment with this library, as well as esp-link, which already offers the OTA system for the Arduino. Anyway, I appreciate your attention.
@tablatronix commented on GitHub (Nov 19, 2018):
We have an ota branch and have been testing ota web upload if you are interested. wm is more a framework and library than an application, you write your own code to do that stuff
@tablatronix commented on GitHub (Nov 19, 2018):
#500
#768
@rtek1000 commented on GitHub (Nov 19, 2018):
Yes, I agree, thank you.
@rtek1000 commented on GitHub (Nov 24, 2018):
Hello,
To anyone who might be interested, there is an example code that performs the configuration of the SSID and password for AP mode (with external reset button implementation):
https://github.com/msraynsford/APConfig
@tablatronix commented on GitHub (Nov 24, 2018):
its pretty trivial with wm, someone just needs to write it, get param, save to eeprom, read eeprom autoconnect(value,pass);