aboutsummaryrefslogtreecommitdiff
path: root/libraries/Esplora/Beginners/EsploraBlink/EsploraBlink.ino
diff options
context:
space:
mode:
authorCristian Maglie <c.maglie@bug.st>2013-08-23 15:59:24 +0200
committerCristian Maglie <c.maglie@bug.st>2013-08-23 15:59:24 +0200
commit540743129b2badb813b703208d121ff14553c147 (patch)
tree6fadb4ebce68e1f0cb298a282be135c23fd156ed /libraries/Esplora/Beginners/EsploraBlink/EsploraBlink.ino
parent073b3ac9d4ae93ac0bb3a91afc65ae9d8f1d5d59 (diff)
parent67c84855c2f3ce99b091a756bb2ca1a016260659 (diff)
Merge branch 'ide-1.5.x' into dev-ide-1.5.x-discovery
Conflicts: app/src/processing/app/Preferences.java app/src/processing/app/debug/Uploader.java
Diffstat (limited to 'libraries/Esplora/Beginners/EsploraBlink/EsploraBlink.ino')
-rw-r--r--libraries/Esplora/Beginners/EsploraBlink/EsploraBlink.ino42
1 files changed, 0 insertions, 42 deletions
diff --git a/libraries/Esplora/Beginners/EsploraBlink/EsploraBlink.ino b/libraries/Esplora/Beginners/EsploraBlink/EsploraBlink.ino
deleted file mode 100644
index e198551..0000000
--- a/libraries/Esplora/Beginners/EsploraBlink/EsploraBlink.ino
+++ /dev/null
@@ -1,42 +0,0 @@
-
-/*
- Esplora Blink
-
- This sketch blinks the Esplora's RGB LED. It goes through
- all three primary colors (red, green, blue), then it
- combines them for secondary colors(yellow, cyan, magenta), then
- it turns on all the colors for white.
- For best results cover the LED with a piece of white paper to see the colors.
-
- Created on 22 Dec 2012
- by Tom Igoe
-
- This example is in the public domain.
- */
-
-#include <Esplora.h>
-
-
-void setup() {
- // There's nothing to set up for this sketch
-}
-
-void loop() {
- Esplora.writeRGB(255,0,0); // make the LED red
- delay(1000); // wait 1 second
- Esplora.writeRGB(0,255,0); // make the LED green
- delay(1000); // wait 1 second
- Esplora.writeRGB(0,0,255); // make the LED blue
- delay(1000); // wait 1 second
- Esplora.writeRGB(255,255,0); // make the LED yellow
- delay(1000); // wait 1 second
- Esplora.writeRGB(0,255,255); // make the LED cyan
- delay(1000); // wait 1 second
- Esplora.writeRGB(255,0,255); // make the LED magenta
- delay(1000); // wait 1 second
- Esplora.writeRGB(255,255,255);// make the LED white
- delay(1000); // wait 1 second
-
-}
-
-