From 4c229dfd4ddd6317ab248cc9ce20e79b6f7737dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Tue, 26 Mar 2024 00:23:58 +0100 Subject: [PATCH] 50msec is a bit steep --- src/input/peMatrixBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/peMatrixBase.cpp b/src/input/peMatrixBase.cpp index af7d7b7996..5340898a93 100644 --- a/src/input/peMatrixBase.cpp +++ b/src/input/peMatrixBase.cpp @@ -80,5 +80,5 @@ int32_t PeMatrixBase::runOnce() } } } - return 50; // Keyscan every 50msec to avoid key bounce + return 100; // Keyscan every 100msec to avoid key bounce }