Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database 101

Authors: Guy Kawasaki

1st Edition

0938151525, 978-0938151524

More Books

Students also viewed these Databases questions

Question

3. Provide advice on how to help a plateaued employee.

Answered: 1 week ago