Initialize value to fix warning

This commit is contained in:
Jonathan Bennett 2025-06-21 23:56:14 -05:00
parent 0108ad7992
commit ce1480df98

View File

@ -32,6 +32,6 @@ class UpDownInterruptBase : public Observable<const InputEvent *>, public concur
unsigned long lastUpKeyTime = 0; unsigned long lastUpKeyTime = 0;
unsigned long lastDownKeyTime = 0; unsigned long lastDownKeyTime = 0;
unsigned long lastPressKeyTime = 0; unsigned long lastPressKeyTime = 0;
unsigned long updownDebounceMs; unsigned long updownDebounceMs = 50;
const unsigned long pressDebounceMs = 200; const unsigned long pressDebounceMs = 200;
}; };