Multiple RGB Led Chaser Using Arduino Uno
by sparkbuzzer in Circuits > Arduino
3150 Views, 16 Favorites, 0 Comments
Multiple RGB Led Chaser Using Arduino Uno
In This Blog I have shown you how to build LED chaser using arduino uno
Full Steps in Video
Youtube Video
Watch This Video And Find More Arduino Projects at Sparkbuzzer.com
Components
- RGB Leds
- Jumper Wires
- Breadboard
- Arduino Uno
- USB Cable for Arduino
Led Mount on Breadboard
Connect cathod pins to Gnd
and
andode pins to arduino pins 3 to 12
Wire Connection
Code
RGB Led Chaser Code
Here is the code
int ledpin;
int pot = A0;
void setup() {
for(ledpin=2;ledpin<=8;ledpin++){
pinMode(ledpin,OUTPUT);
}
}
void loop() {
for(ledpin=2;ledpin<=8;ledpin++){
int value = analogRead(pot);
digitalWrite(ledpin,HIGH);
delay(value);
}
for(ledpin=2;ledpin<=8;ledpin++){
int value = analogRead(pot);
digitalWrite(ledpin,LOW);
delay(value);
}
}Code Screenshot
Here is the code screenshot
Video and Pics
Pls Support us On Youtube, Subscribe Here #sparkbuzzer