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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started