From a7aabfb3a3bc26489983370b4f6e32fb39e907f7 Mon Sep 17 00:00:00 2001 From: Fede85 Date: Thu, 27 Jun 2013 12:16:14 +0200 Subject: EEPROM library to the new format --- .../EEPROM/examples/eeprom_clear/eeprom_clear.ino | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino (limited to 'libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino') diff --git a/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino b/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino deleted file mode 100644 index d1e29bd..0000000 --- a/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino +++ /dev/null @@ -1,23 +0,0 @@ -/* - * EEPROM Clear - * - * Sets all of the bytes of the EEPROM to 0. - * This example code is in the public domain. - - */ - -#include - -void setup() -{ - // write a 0 to all 512 bytes of the EEPROM - for (int i = 0; i < 512; i++) - EEPROM.write(i, 0); - - // turn the LED on when we're done - digitalWrite(13, HIGH); -} - -void loop() -{ -} -- cgit v1.2.3-18-g5258