4 * Reads the value of each byte of the EEPROM and prints it
10 // start reading from the first byte (address 0) of the EEPROM
21 // read a byte from the current address of the EEPROM
22 value = EEPROM.read(address);
24 Serial.print(address);
26 Serial.print(value, DEC);
29 // advance to the next address of the EEPROM
30 address = address + 1;
32 // there are only 512 bytes of EEPROM, from 0 to 511, so if we're
33 // on address 512, wrap around to address 0