From b2167d8f81acf68dd85c67be17f3950c26e08c3c Mon Sep 17 00:00:00 2001 From: Stephen Brown Date: Tue, 14 Jun 2022 23:21:43 +0100 Subject: [PATCH] Adjusted timing variables for UI Buttons Made debounce a little longer, made double click and long press timeouts much longer. --- src/uibuttons.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uibuttons.h b/src/uibuttons.h index 4bb9408..455f32c 100644 --- a/src/uibuttons.h +++ b/src/uibuttons.h @@ -28,9 +28,9 @@ #include "config.h" #define BUTTONS_UPDATE_NUM_TICKS 100 -#define DEBOUNCE_TIME 50 -#define DOUBLE_CLICK_TIME 1700 -#define LONG_PRESS_TIME 4500 +#define DEBOUNCE_TIME 100 +#define DOUBLE_CLICK_TIME 4000 +#define LONG_PRESS_TIME 10000 #define MAX_BUTTONS 5 class CUIButton