Question: 1 13 1 const int buttonPin = 2; 2 const int ledPin = 13; 3 4 int ledState = HIGH; 5 int buttonState; 6 int

1 13 1 const int buttonPin = 2; 2 const int ledPin = 13; 3 4 int ledState = HIGH; 5 int buttonState; 6 int lastButtonState = LON; 7 8 long lastDebounceTime = 0; 9 long debounce Delay = 50; 10 11 void setup() { 12 pinMode (buttonPin, INPUT); pinMode(ledPin, OUTPUT); 141 15 16 void loop() { 17 int reading = digitalRead(buttonPin); 18 19 if (reading lastButton State) last DebounceTime = millis(); 3 22 if (milli- last Debounce Time) debounceDelay)) 24 { buttonstate = reading; 3 1 w 2 23 22 digitalise(ledPin, buttonstate); lastButtonstate = reading; Enter the line On what line number is the error in this code? number only. What is the wrong syntax (for example extra/missing:, >,..) etc.. )? Enter the wrong syntax only
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
