/* * EEPROM Clear * * Sets all of the bytes of the EEPROM to 0. * This example code is in the public domain. */#include<EEPROM.h>voidsetup(){// write a 0 to all 512 bytes of the EEPROMfor(inti=0;i<512;i++)EEPROM.write(i,0);// turn the LED on when we're donedigitalWrite(13,HIGH);}voidloop(){}