From 702d6dfde905c6508d737ff0700dc6154bfe6990 Mon Sep 17 00:00:00 2001 From: Lyubomir Penev Date: Wed, 22 Oct 2025 21:13:10 +0200 Subject: [PATCH] Removed last return from debounceRead --- src/commonFunctions.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/commonFunctions.cpp b/src/commonFunctions.cpp index 79b55f6..c7b3102 100644 --- a/src/commonFunctions.cpp +++ b/src/commonFunctions.cpp @@ -31,6 +31,4 @@ bool debounceRead(int buttonPin, int *lastButtonState, unsigned long *lastDeboun // save the reading. Next time through the loop, it'll be the lastButtonState: *lastButtonState = reading; - - return false; } \ No newline at end of file