wipingeeprom
#include <EEPROM.h>
void setup() {
Serial.begin(115200);
EEPROM.begin(512);
for (int i = 0; i < 512; i++) {
EEPROM.write(i, 0);
}
EEPROM.commit();
Serial.println("EEPROM cleared!");
}
void loop() {
// Nothing here
}
wipingeeprom.txt · Last modified: by 127.0.0.1
