RGB LED Serial Control Arduino
by Surya Krishnakumar in Circuits > Arduino
25305 Views, 19 Favorites, 0 Comments
RGB LED Serial Control Arduino
This instructable will show you how to control a RGB led with serial monitor.
To send a colour value to the arduino :
first -open the serial monitor after uploading the code.
second -select 'NEWLINE' in the bottom right corner left to the baud rate.
third -type your own hex values and hit enter.
NOTE:
The hex value should be entered in the format R,G,B
Example: 255,0,255
Parts List
1) Arduino uno with atleast three PWM pins.
2) RGB led common anode.
3) Half size breadboard.
4) Jumper wire kit.
5) 3* 220ohms resistor (one for red cathode,one for green cathode another for blue cathode).
6) Computer with Arduino IDE.
Connecting the RGB Led to Arduino and Rogramming
1) Place the RGB led on three open rows on the breadboard.
2) Connect the red pin to a 220ohms resitor and connect the end of the resistor to DIGITALPIN3 on the arduino.
3) Connect the common anode pin to 5v on the arduino.
4) Connect the green pin to a 220ohms resitor and connect the end of the resistor to DIGITALPIN5 on the arduino.
5) Connect the blue pin to a 220ohms resitor and connect the end of the resistor to DIGITALPIN6 on the arduino.
6) Upload the code and open the serial monitor and set to 'NEWLINE' and set the baud rate to 9600..
7) Now enter your hex values as R,G,B and hit enter.
NOTE: The maximum value of a rgb led is 255, so if u enter 5000,0,245,, the 5000 will be taken as the maximum value 255 only...