diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2007-10-06 13:04:46 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2007-10-06 13:04:46 +0000 |
commit | 9e48dfc4fd53a2bc53367568077fbea44f88eda2 (patch) | |
tree | 356854e8239e0f0676bcf6105b7ea6a53cb9a880 /core/libraries/EEPROM/examples/eeprom_clear | |
parent | 179fcdbda432ff33a921a70994087b08b2a79caa (diff) |
Moving libraries out from inside targets and creating bootloaders directory.
Diffstat (limited to 'core/libraries/EEPROM/examples/eeprom_clear')
-rw-r--r-- | core/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.pde | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/core/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.pde b/core/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.pde deleted file mode 100644 index 36af68e..0000000 --- a/core/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 <EEPROM.h> - -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() -{ -} |