aboutsummaryrefslogtreecommitdiff
path: root/libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino
diff options
context:
space:
mode:
authorFede85 <f.vanzati@gmail.com>2013-07-04 15:54:30 +0200
committerFede85 <f.vanzati@gmail.com>2013-07-04 15:54:30 +0200
commitcfebeec56699b44a6df3bf257545fb1a32acac32 (patch)
tree9f58805608eb7519a1138594a920ba0353512612 /libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino
parent8df1ed0ad2785b9bd4a7ac48921c0c5a0649729f (diff)
Esplora library to new format
Diffstat (limited to 'libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino')
-rw-r--r--libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino42
1 files changed, 0 insertions, 42 deletions
diff --git a/libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino b/libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino
deleted file mode 100644
index 3c617dc..0000000
--- a/libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- Esplora LED Show
-
- Makes the RGB LED bright and glow as the joystick or the
- slider are moved.
-
- Created on 22 november 2012
- By Enrico Gueli <enrico.gueli@gmail.com>
- Modified 22 Dec 2012
- by Tom Igoe
-*/
-#include <Esplora.h>
-
-void setup() {
- // initialize the serial communication:
- Serial.begin(9600);
-}
-
-void loop() {
- // read the sensors into variables:
- int xAxis = Esplora.readJoystickX();
- int yAxis = Esplora.readJoystickY();
- int slider = Esplora.readSlider();
-
- // convert the sensor readings to light levels:
- byte red = map(xAxis, -512, 512, 0, 255);
- byte green = map(yAxis, -512, 512, 0, 255);
- byte blue = slider/4;
-
- // print the light levels:
- Serial.print(red);
- Serial.print(' ');
- Serial.print(green);
- Serial.print(' ');
- Serial.println(blue);
-
- // write the light levels to the LED.
- Esplora.writeRGB(red, green, blue);
-
- // add a delay to keep the LED from flickering:
- delay(10);
-}