From 2acb3eca8606a19b9f8adcf4f445da34dd673dc9 Mon Sep 17 00:00:00 2001 From: true Date: Tue, 6 Aug 2024 17:46:23 -0700 Subject: [PATCH] increased debounce to reduce double-push incidents --- firmware/user/src/btn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/user/src/btn.h b/firmware/user/src/btn.h index 757a9c4..9c148e5 100644 --- a/firmware/user/src/btn.h +++ b/firmware/user/src/btn.h @@ -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)