Skip to main content

EEPROM Usage

📃 Description​

The EEPROM is a small data storage sector of the Arduino Nano Every (The board intended to be used for this project) that will be used to hold data that shouldn't be saved to the SD card at the time, and instead be saved to the board itself. This table defines how that data should be saved and written.

Usage Table​

Byte PositionStorage Description
0 to 24System Name (Stored for convenience purposes and to ensure the SD card has the right name linked to the right account, which is more useful for multi-system setups)
25 to XOther persistent parameters
X+1 to 256Various backup logs each stored in the following backup log format

Backup log format​

(Each log currently takes up 32 bytes)

Byte SizeStorage Description
20 BytesDate and time recorded
4 BytesTemperature (float)
4 BytesHumidity (float)
4 BytesPressure (float)