mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1069] IS there a way to either keep AP+STA for timeout duration, or for AP at each reboot? #912
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#912
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 @Hoel on GitHub (May 27, 2020).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1069
----------------------------- Remove above -----------------------------
Basic Infos
Hardware
WiFimanager Branch/Release:
Esp8266/Esp32:
Hardware: ESP-12e, esp01, esp25
ESP Core Version: 2.4.0, staging
Description
Problem description
I would like to make the portal always accessible at reset for the duration of the timeout, if the credential have already been filled previously it is fine that the network is still connected immediately (AP + STA) but even in this case i would like that the AP portal stays accessible for the duration of the timeut. The goal is to allow to change credentials at any time after a reset (or enter them for the first time).
What is the best way to do this? For some reason i did not found a way to do it in the library, i dont mind modifying the source but its not clear to me how it is best done.
Settings in IDE
Module: esp8285 generic module
@tablatronix commented on GitHub (May 28, 2020):
You can use the ondemand examples to do this. Just remember that AP+STA is not very stable.
You can also just make the portal available on your lan with no ap..
@Hoel commented on GitHub (May 28, 2020):
ah thank you, i also modified slightly the source to keep AP+STA during the timeout, even if the STA is connected directly, which is what i needed.