arduino-esp32/libraries/EEPROM
Rob58329 afa5f41328
Arduino core for the esp32 - Add new function "bool isDirty()" to EEPROM.h and EEPROM.cpp (#9611)
* Update EEPROM.h - Added new function: bool isDirty()

* Update EEPROM.cpp - Added new function: bool isDirty()
2024-05-10 14:10:29 +02:00
..
examples refactor(style): Change some style options (#9526) 2024-04-19 18:16:55 +03:00
src Arduino core for the esp32 - Add new function "bool isDirty()" to EEPROM.h and EEPROM.cpp (#9611) 2024-05-10 14:10:29 +02:00
keywords.txt Refactor repository with pre-commit hooks (#9515) 2024-04-15 19:40:56 +03:00
library.properties Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
README.md Converted EEPROM library to use nvs instead of partition. (#2678) 2019-04-23 23:55:12 +03:00

EEPROM

EEPROM is deprecated. For new applications on ESP32, use Preferences. EEPROM is provided for backwards compatibility with existing Arduino applications. EEPROM is implemented using a single blob within NVS, so it is a container within a container. As such, it is not going to be a high performance storage method. Preferences will directly use nvs, and store each entry as a single object therein.