Suppose there are 6 LEDs hooked up to Arduino digital pins 3-8. Using for() loop
ID: 3675687 • Letter: S
Question
Suppose there are 6 LEDs hooked up to Arduino digital pins 3-8. Using for() loops, write a sketch that would turn the LEDs on for 0.5 seconds at a time in order, 3-8, and reverse order, 8-3, indefinitely. Refer to the pseudocode below to understand how the LEDs should behave:
Setup Declare digital pins 3-8.
Loop
Turn on first LED for 0.5 seconds. Turn off first LED.
Turn on second LED for 0.5 seconds. Turn off second LED.
Turn on third LED for 0.5 seconds. Turn off third LED.
Turn on fourth LED for 0.5 seconds. Turn off fourth LED.
Turn on fifth LED for 0.5 seconds. Turn off fifth LED.
Turn on sixth LED for 0.5 seconds. Turn off sixth LED.
Turn on fifth LED for 0.5 seconds. Turn off fifth LED.
Turn on fourth LED for 0.5 seconds. Turn off fourth LED.
Turn on third LED for 0.5 seconds. Turn off third LED.
Turn on second LED for 0.5 seconds. Turn off second LED.
Turn on first LED for 0.5 seconds. Turn off first LED.
Explanation / Answer
The code will contain following part
int ledpin;
for(ledpin =3; ledpin<8; ledpin++)
{
loop();
}
void loop() // run over and over again
{
for (double i = 0.0; i < 0.5; i=i+0.1)
{
flash(durations[i]);
}
delay(1000); // wait 1 second before we start // again
}
for(ledpin=8; ledpin>3; ledpin--)
{
Loop();
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.