#include int address = 0; byte value; void setup() { // put your setup code here, to run once: Serial.begin(9600); while(!Serial){ ; } } void loop() { // put your main code here, to run repeatedly: value = EEPROM.read(address); Serial.println(value,DEC); address = address + 1; if(address == EEPROM.length()){ address = 0; } delay(500); }