Question: Consider the following program which intend to blink two LEDs connected to Arduino board (Pin 13,14 has two LEDs connected) once uploaded into the
Consider the following program which intend to blink two LEDs connected to Arduino board (Pin 13,14 has two LEDs connected) once uploaded into the microcontroller on a Arduino board and powered it up. void setup() { pinMode(13, OUTPUT); pinMode(14, OUTPUT); } void loop() { digitalWrite(13, HIGH); delay(1); digitalWrite(14, HIGH); delay(1); digitalWrite(13, LOW); delay(1); digitalWrite(14, LOW); delay(1); } But it was observed that LEDS does not blinking once uploaded into the microcontroller on a Arduino board and powered it up as expected. Select the program which correct this problem.
Step by Step Solution
3.41 Rating (151 Votes )
There are 3 Steps involved in it
The image displays an Arduino program intended to blink two LEDs connected to digital pins 13 and 14 The code switches each LED on for 1 millisecond a... View full answer
Get step-by-step solutions from verified subject matter experts
