LED Show using Arduino Esplora

LED Show

This example shows you how to read the values from the joystick. The output will be displayed through the serial monitor and as a color on the RGB LED.

LED Show

The joystick has two axes, X and Y. Each axis controls a color of the RGB LED: red with the X-axis, and green with the Y-axis. The brightness of the blue element will be controlled by the position of the linear potentiometer.

Circuit

Only your Arduino Esplora is needed for this example.

Esplora circuitjoystick and slider to control the color of the RGB led on the Esplora

Code

The RGB LED is comprised of three colors that represent the three primary colors: red, green, and blue. Each of these light’s brightness is individually controllable with functions in the Esplora library:

If you want to control all the colors with one instruction you can use the writeRGB() function.

Moving the joystick and changing the position of the linear potentiometer will generate different values. These values are used to produce two different outputs: one will appear by opening the serial monitor, and the other is displayed physically through the RGB led.

 

/*
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
*/

Read more: LED Show using Arduino Esplora

Leave a Comment

Your email address will not be published. Required fields are marked *