micropython / micropython-esp32

Old port of MicroPython to the ESP32 -- new port is at https://github.com/micropython/micropython
MIT License
678 stars 218 forks source link

NVS as config store #127

Closed annejan closed 7 years ago

annejan commented 7 years ago

Depends on https://github.com/SHA2017-badge/Firmware/pull/90

annejan commented 7 years ago

Sorry :( once again clicked on the wrong tree!!

silbo commented 6 years ago

what happened to this ? any updates on using NVS from micropython on esp32 ?

MrSurly commented 6 years ago

@silps I don't think there's a lot of interest, NVS is simply a partition type for the flash. Since you have a file system available in MP, why not just write a JSON config there?

silbo commented 6 years ago

@MrSurly 👍 was just looking for the shortest effort in terms of writing code : ) JSON is the way to go yep, thanks!