DD2-monitor/simulator/rdtemp/storage.ino

15 lines
422 B
C++

/* --------------------------------------------------------------- */
#include <EEPROM.h>
/* --------------------------------------------------------------- */
int init_storage(void)
{
Serial.println(__func__);
Serial.print("eeprom length: ");
Serial.println(EEPROM.length());
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */