From 37684294eb95a27d20b38df05ce708d6e893dc89 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 }