Tutorial
Manuals
Brands
DFRobot Manuals
Arduino Accessories
DFRobot EEPROM Data Storage Module For Arduino
1
2
3
4
Serial.print((char)b); //print content to serial port
addr++; //increase address
b = i2c_eeprom_read_byte(0x50, addr); //access an address
from the memory
}
Serial.println(" ");
delay(2000);
}
1
...
2
3
4