Introduction: SIMPLE RGB LED ARDUINO PROJRCT
For begginers ......just like mr ;)
Step 1: THAT'S ALL
WHAT YOU NEED:
KEYES RGB MODULE
ARDUINO
PC
------------------------------------------------------------------------------------------------------------------------------------------------------
SIMPLY CONNECT THE THE NEGATIVE PIN TO THE GND ,THE RED PIN TO PIN 13 ,THE GREEN PIN TO 12 PIN ,THE BLUE PIN TO THE 13 PIN ........AND THERE YOU ARE
------------------------------------------------------------------------------------------------------------------------------------------------------
HERE'S THE CODE :
int red = 12;int green = 13;int blue = 11;void setup() {pinMode(red, OUTPUT);pinMode(green, OUTPUT);pinMode(blue, OUTPUT);}void loop() {digitalWrite(red, HIGH);delay(500);digitalWrite(red, LOW);delay(500);digitalWrite(green, HIGH);delay(500);digitalWrite(green, LOW);delay(500);digitalWrite(blue, HIGH);delay(500);digitalWrite(blue, LOW);delay(500);}
------------------------------------------
3 Comments
3 years ago
Nice short and simple ;)
Allthough pasting the code in proper formatting would be nice :P
6 years ago on Introduction
Interesting, there's definitely not enough arduino stuff on this site for beginners. Thanks for sharing!
Reply 6 years ago
I know!!!!!! so i decide to upoload ..thanks