From 6005c59ad03446153c66a991f01ac91c31d98dac Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Sat, 7 Nov 2009 17:54:56 +0000 Subject: Moving libraries out of arduino platform / core directory and to top-level. --- .../EEPROM/examples/eeprom_clear/eeprom_clear.pde | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 libraries/EEPROM/examples/eeprom_clear/eeprom_clear.pde (limited to 'libraries/EEPROM/examples/eeprom_clear') diff --git a/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.pde b/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.pde deleted file mode 100644 index 36af68e..0000000 --- a/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.pde +++ /dev/null @@ -1,21 +0,0 @@ -/* - * EEPROM Clear - * - * Sets all of the bytes of the EEPROM to 0. - */ - -#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