Arduo Memory Reminder Medicine

:roll_eyes:
oppure usare questo

Wire.beginTransmission(0x68); // Open I2C line in write mode (0x68 DS1307 )
Wire.send((byte)0x00); // Set the register pointer to (0x00)
Wire.endTransmission(); // End Write Transmission
Wire.requestFrom(0x68, 1); // Open the I2C line in send mode

if (Wire.available()) {
Serial.println("RTC presente");
}

ma non posso provarlo, perchè non ho ancora l'RTC, e neppure la soluzione di scrivere e poi leggere una memoria interna dell'RTC.