Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

As fast as possible please The code shown below is intended to read a push button to turn an LED on when the button is

image text in transcribedAs fast as possible please

The code shown below is intended to read a push button to turn an LED on when the button is not pressed and off when it is pressed. Assume that the circuit is wired correctly. Will this code compile and function as intended? If it won't, pick the best answer that explains why it won't. \( \begin{aligned} 1 & \text { int LEDPin }=8 ; \\ 2 & \text { int buttonPin }=3 ; \\ 3 & \\ 4 & \text { void setup() }\{ \\ 5 & \text { Serial.begin }(9600) ; \\ 6 & \text { pinMode(LEDPin, OUTPUT); } \\ 7 & \text { pinMode(buttonPin, INPUT_PULLUP); } \\ 8 & \text { \} } \\ 9 & \\ 10 & \text { void loop() }\{ \\ 11 & \text { if(digitalRead(buttonPin) == HIGH) }\{ \\ 12 & \text { digitalWrite(LEDPin, HIGH) } \\ 13 & \text { \} } \\ 14 & \text { else }\{ \\ 15 & \text { digitalWrite(LEDPin, LOW) } \\ 16 & \text { \} } \\ 17 & \text { \} }\end{aligned} \) The code won't compile because parts of the code are not tabbed correctly. The code won't compile because there is at least one semi-colon missing. The code won't function correctly because line 11 should be changed to " if(digitalRead(buttonPin) == LOW)\{ " This code will compile and function properly - there are no issues. The code won't compile because at least one squiggly bracket is missing

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

Step: 3

blur-text-image

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

More Books

Students also viewed these Databases questions