Question: Plz help me out with this code for RGB ardrunio: This code is for one RGB led. I want to add another RGB in this
Plz help me out with this code for RGB ardrunio:
This code is for one RGB led. I want to add another RGB in this code:
Plz add the same code for second RGB led by using same code:
int red = 11; int green = 10; int blue = 9;
void setup() { pinMode(red, OUTPUT); pinMode(green, OUTPUT); pinMode(blue, OUTPUT); }
void loop() { digitalWrite(red, HIGH); digitalWrite(green, LOW); digitalWrite(blue, LOW); delay(1000); digitalWrite(red, LOW); digitalWrite(green, HIGH); digitalWrite(blue, LOW); delay(1000); digitalWrite(red, LOW); digitalWrite(green, LOW); digitalWrite(blue, HIGH); delay(1000); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
