DD2-monitor/simulator/rdtemp/storage.ino

15 lines
422 B
Arduino
Raw Normal View History

2019-04-29 17:46:14 +02:00
/* --------------------------------------------------------------- */
#include <EEPROM.h>
/* --------------------------------------------------------------- */
int init_storage(void)
{
Serial.println(__func__);
Serial.print("eeprom length: ");
Serial.println(EEPROM.length());
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */