Removed last return from debounceRead
All checks were successful
Build Code / build (push) Successful in 1m20s

This commit is contained in:
2025-10-22 21:13:10 +02:00
parent 1fdea9afb4
commit 702d6dfde9

View File

@@ -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: // save the reading. Next time through the loop, it'll be the lastButtonState:
*lastButtonState = reading; *lastButtonState = reading;
return false;
} }