increased debounce to reduce double-push incidents

This commit is contained in:
true 2024-08-06 17:46:23 -07:00
parent f6e48a1708
commit 2acb3eca86
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
#define BTN_COUNT 2
#define BTN_DEBOUNCE 3 // debounce time in ~8ms increments
#define BTN_DEBOUNCE 5 // debounce time in ~8ms increments
#define BTN_PUSH (1 << 0)
#define BTN_HOLD (1 << 1)