mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #628] WiFiManagerParameter related future request. #524
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#524
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 @rockygsm on GitHub (Jun 20, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/628
Hello
i been working from few days on project related to ESP8266 node mcu.
all work great..
only thing is
char AuthEmailChar[50]; is defined on top
WiFiManagerParameter custom_ApiKey_token("emailid", "Your Email id", AuthEmailChar, 50); wifiManager.addParameter(&custom_ApiKey_token);and using startConfigPortal if last login is not saved or changed.
work fine first time.. but as soon i reset esp its not show value for "custom_ApiKey_token.getValue()"
its not save value like wifi password saved by manager after reset..
i have to use SPIFFS or eeprom to save it ? or is there anything i am doing wrong ?
@liebman commented on GitHub (Jun 20, 2018):
You need to save your settings as its not handled by WiFIManager. See an example called 'AutoConnectWithFSParameters'.