Skip to content

Commit be9bbc3

Browse files
authored
Merge pull request #5407 from pfeerick/patch-1
Minor change to example sketch comment
2 parents 69fd6de + dc165ce commit be9bbc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/shared/examples/02.Digital/Debounce/Debounce.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ int buttonState; // the current reading from the input pin
4141
int lastButtonState = LOW; // the previous reading from the input pin
4242

4343
// 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.
44+
// will quickly become a bigger number than can be stored in an int.
4545
unsigned long lastDebounceTime = 0; // the last time the output pin was toggled
4646
unsigned long debounceDelay = 50; // the debounce time; increase if the output flickers
4747

0 commit comments

Comments
 (0)