I just want to write and read a location in de eemem plug ,
but I get the value 0xFF back, location 0x2000 value 0x55.
void loop() {
delay(1000);
// value to address 0x2000
eemem.send();
eemem.write(0x20);
eemem.write(0x00);
eemem.write(0x55);
eemem.stop();
// read address 0x2000
eemem.send();
eemem.write(0x20);
eemem.write(0x00);
eemem.receive();
byte value = eemem.read(1); ( I don't understand this ,what does the value 1)
eemem.stop();
Serial.println(value,HEX); output is 0xFF mustbe 0x55
