mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #196] EEPROM Storing for SSID/Pass #158
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#158
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 @LorelaiNerv on GitHub (Jul 18, 2016).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/196
Hello.
Can you please tell me if there is a special start bit for EEPROM write for the network ssid and pass, or is it 0?
I would like to store some more data in EEPROM and i want to leave that SSID/pass area alone (say.. 50 addresses).
Awsome work with this library! Congrats!
@tzapu commented on GitHub (Jul 18, 2016):
hi,
thanks,
you can safely write to eeprom, it is separate from ssid/pwd store
cheers
@LorelaiNerv commented on GitHub (Jul 18, 2016):
Great!
Thank you very much,
Keep up the good work ;)
@pieman64 commented on GitHub (Jul 18, 2016):
@LorelaiNerv https://github.com/esp8266/Arduino/blob/master/doc/filesystem.md shows the memory structure for ESP's and as @tzapu states ssid/pwd are in the WiFi area not the EEPROM area. Do you really want to use EEPROM in the traditional way or would it be better for you to add extra parameters to WiFiManager?
@tzapu commented on GitHub (Jul 18, 2016):
@pieman64 thanks
also, there is the additional option of using wifimanager for the parameters, and having it store all in eeprom.
i ve got a sketch somewhere doing that
cheers
@LorelaiNerv commented on GitHub (Jul 18, 2016):
I want to use it absolutely old fashioned way.. made some successful tests on arduino mega and now i want to implement the solution to ESP. If i am successful i will post it heere.
My stored values are absolutely independent of this library, bbut i would not interfere with it's functionality.
I will keep you posted.
Again, thank you very much!
@pieman64 commented on GitHub (Jul 18, 2016):
OK I just worry about some users trashing their devices by posting a bad sketch that exceeds the maximum allowable writes to EEPROM, within a few minutes.
@LorelaiNerv commented on GitHub (Jul 18, 2016):
Of course it is a possibility.. but, i have tested the code for some time now.. and looks ok.
My worry was about the address allocation but i saw that it wasn't the case.
Anyway.. average read/writes to eeprom is around 100k if i remember... should take a while.. except for some loop..
@LorelaiNerv commented on GitHub (Jul 18, 2016):
On a second thought.. can you please post the example code for storing parameters to wifi area? .. could be a valid solution due to the above mentioned life expectancy of eeprom....
I have "work in progress" here, and i would give it a try.. can save some heads ;)
thank you,
@rafaelmaeuer commented on GitHub (Jun 8, 2017):
push! Same for me, please post a working example!