mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1136] Where is the Data stored ?? #973
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#973
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 @animeshdhakal on GitHub (Oct 21, 2020).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1136
I want to know a simple question that Where are the ssid and password stored ? Is it on the EEPROM ?? Hope Anyone Knows !!
@tablatronix commented on GitHub (Oct 21, 2020):
The esp library handles this
@animeshdhakal commented on GitHub (Oct 21, 2020):
I want to store relay state without the eeprom so how can I do it with esp library???
@tablatronix commented on GitHub (Oct 21, 2020):
you cannot, you have to use your own code and save to flash or spiffs, or littlefs
@animeshdhakal commented on GitHub (Oct 22, 2020):
I want store only 0 and 1, 4 times so is there any code I can find ?
@tablatronix commented on GitHub (Oct 22, 2020):
here is some code i wrote that saves to flash, used for reset counting.
https://gist.github.com/tablatronix/efa5d525d704e4b8b9ece31af0c99fdf
Maybe it will give you a place to start