mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
small changes to the Debounce example
This commit is contained in:
@ -75,12 +75,12 @@ void loop() {
|
|||||||
// only toggle the LED if the new button state is HIGH
|
// only toggle the LED if the new button state is HIGH
|
||||||
if (buttonState == HIGH) {
|
if (buttonState == HIGH) {
|
||||||
ledState = !ledState;
|
ledState = !ledState;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// set the LED:
|
// set the LED:
|
||||||
digitalWrite(ledPin, ledState);
|
digitalWrite(ledPin, ledState);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// save the reading. Next time through the loop,
|
// save the reading. Next time through the loop,
|
||||||
// it'll be the lastButtonState:
|
// it'll be the lastButtonState:
|
||||||
|
Reference in New Issue
Block a user