From 50f73edecbd345209687c6a38df8fe66946e18a7 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Thu, 14 Nov 2024 15:35:15 +0100 Subject: [PATCH] Increase delay --- app/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.c b/app/main.c index 5a20bfa..4223046 100644 --- a/app/main.c +++ b/app/main.c @@ -461,7 +461,7 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld) return; } - gKeyInputCountdown = (gInputBoxIndex == totalDigits) ? (key_input_timeout_500ms / 16) : (key_input_timeout_500ms / 4); + gKeyInputCountdown = (gInputBoxIndex == totalDigits) ? (key_input_timeout_500ms / 16) : (key_input_timeout_500ms / 3); const char *inputStr = INPUTBOX_GetAscii(); uint8_t inputLength = gInputBoxIndex;