for(int i = 0; i < 10; i++) {
eeprom_i2c_write(B1010100, i, ‘f’+i);
delay(100);
}
Serial.println(“Writen to memory!”);
}
void loop() {
for(int i = 0; i < 10; i++) {
byte r = eeprom_i2c_read(B1010100, i);
Serial.print(i);
Serial.print(" - “);
Serial.print(r);
Serial.print(”\n");
delay(1000);
}
}
what is the ‘f’ from " eeprom_i2c_write(B1010100, i, ‘f’+i) " ? where it came from ?
cause we use “r” in serial .print (r), not “f” …
some can explain it ?
:blush: understood !
but what is the value B1010100 ?
and why after reading from my memory, it send me from Serial.print(r) thoses numbers like 102,103,104,105 instead of the ascii value of f+i ?
:.(i gona do again the test to be shure wath i wrote here....i gone see tonight, but if you can tell....)