From ce1480df98c5edbcb1bd6ba66ef871a97efd2807 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Sat, 21 Jun 2025 23:56:14 -0500 Subject: [PATCH] Initialize value to fix warning --- src/input/UpDownInterruptBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/UpDownInterruptBase.h b/src/input/UpDownInterruptBase.h index 789ba2310..a83a298f2 100644 --- a/src/input/UpDownInterruptBase.h +++ b/src/input/UpDownInterruptBase.h @@ -32,6 +32,6 @@ class UpDownInterruptBase : public Observable, public concur unsigned long lastUpKeyTime = 0; unsigned long lastDownKeyTime = 0; unsigned long lastPressKeyTime = 0; - unsigned long updownDebounceMs; + unsigned long updownDebounceMs = 50; const unsigned long pressDebounceMs = 200; };