An open API service indexing awesome lists of open source software.

https://github.com/brianttn/esp32_flashmemory-as-eeprom

Use Flash memory as EEPROM
https://github.com/brianttn/esp32_flashmemory-as-eeprom

eeprom esp32 flash

Last synced: 6 months ago
JSON representation

Use Flash memory as EEPROM

Awesome Lists containing this project

README

          

# Use Flash memory as EEPROM

With the ESP32 and the EEPROM library you can use up to 512 bytes in the flash memory.

## Implementation

The data stored in the flash memory will not disappear when the power is off.

In this implementation we will use it to store variables that must be memorized:

* uvTime
* rfAddrID
* fanGear

We will use 17 bytes of flash memory space to store the data.