DEV_semaphore/.platformio/packages/framework-arduinoespressif32/libraries/EEPROM
David Diaz d76c8bc3c5 Initial commit 2024-07-27 16:03:03 +02:00
..
examples Initial commit 2024-07-27 16:03:03 +02:00
src Initial commit 2024-07-27 16:03:03 +02:00
README.md Initial commit 2024-07-27 16:03:03 +02:00
keywords.txt Initial commit 2024-07-27 16:03:03 +02:00
library.properties Initial commit 2024-07-27 16:03:03 +02:00

README.md

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.