Skip to content

Instantly share code, notes, and snippets.

View I2C_EEPROM_WRITE.ino
#include <Wire.h>
#define DEV_ADDR 0x57
#define START_ADDR 0x045C
#define LENGTH 4
void setup()
{
Serial.begin(57600);
Wire.begin();
View I2C_EEPROM_DUMP.ino
#include <Wire.h>
#define DEV_ADDR 0x57
unsigned int addr = 0x00;
unsigned int count = 0;
void setup()
{
Serial.begin(57600);