Haber si lo entiendes un poco mejor con este ejemplo.
#include <EEPROM.h>
void setup()
{
Serial.begin(9600);
//Grabar en posicion 1 de la memoria el valor 3.
EEPROM.write(1, 3);
void setup()
{
}
void loop()
{
valor = EEPROM.read(1);
Serial.print(a); //Imprime el valor de la direccion 1, un 3
delay(500);
}