arduino-esp32/libraries/EEPROM
2024-09-18 14:54:00 +03: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 Update core version to 3.0.5 2024-09-18 14:54:00 +03:00
README.md docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +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.