8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7bc75b commit 74312c2Copy full SHA for 74312c2
examples/02.Digital/Debounce/Debounce.ino
@@ -41,7 +41,7 @@ int buttonState; // the current reading from the input pin
41
int lastButtonState = LOW; // the previous reading from the input pin
42
43
// the following variables are unsigned long's because the time, measured in miliseconds,
44
-// will quickly become a bigger number than can't be stored in an int.
+// will quickly become a bigger number than can be stored in an int.
45
unsigned long lastDebounceTime = 0; // the last time the output pin was toggled
46
unsigned long debounceDelay = 50; // the debounce time; increase if the output flickers
47
0 commit comments