forked from Elron_dev/elbear_arduino_bsp
39 lines
726 B
C++
39 lines
726 B
C++
/*
|
|
* EEPROM Read
|
|
*
|
|
* Reads the value of each byte of the EEPROM and prints it
|
|
* to the computer.
|
|
*/
|
|
|
|
#include <EEPROM.h>
|
|
|
|
// start reading from the first byte (address 0) of the EEPROM
|
|
int address = 0;
|
|
byte value;
|
|
|
|
void setup() {
|
|
EEPROM.begin();
|
|
// initialize serial and wait for port to open:
|
|
Serial.begin(9600);
|
|
while (!Serial) {
|
|
; // wait for serial port to connect. Needed for native USB port only
|
|
}
|
|
}
|
|
|
|
void loop() {
|
|
// read a byte from the current address of the EEPROM
|
|
value = EEPROM.read(address);
|
|
|
|
Serial.print(address);
|
|
Serial.print("\t");
|
|
Serial.print(value, DEC);
|
|
Serial.println();
|
|
|
|
address = address + 1;
|
|
if (address == EEPROM.length()) {
|
|
address = 0;
|
|
}
|
|
|
|
delay(500);
|
|
}
|