diff options
author | Cristian Maglie <c.maglie@bug.st> | 2013-01-06 18:38:03 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2013-01-06 18:38:03 +0100 |
commit | c01bc2b62f76a5d417e5ed13dcb0c047a4f67224 (patch) | |
tree | 4703fc452282756f3c40d38f9d41b1a28e0bf0f6 /libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino | |
parent | 5f4e55a3d274838388696c3f8130b0f2dc40daf7 (diff) |
Merged upcoming 1.0.4 and updated revision log
Diffstat (limited to 'libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino')
-rw-r--r-- | libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino b/libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino new file mode 100644 index 0000000..3c617dc --- /dev/null +++ b/libraries/Esplora/Beginners/EsploraLedShow/EsploraLedShow.ino @@ -0,0 +1,42 @@ +/* + 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); +} |