Skip to content

Commit

Permalink
Even saner defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
regicidalplutophage authored Nov 7, 2024
1 parent 5269340 commit 458a2f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kmk/scanners/keypad.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(
*,
columns_to_anodes=DiodeOrientation.COL2ROW,
interval=0.01,
debounce_threshold=2,
debounce_threshold=5,
max_events=64,
):
self.keypad = keypad.KeyMatrix(
Expand Down Expand Up @@ -71,7 +71,7 @@ def __init__(
value_when_pressed=False,
pull=True,
interval=0.01,
debounce_threshold=2,
debounce_threshold=5,
max_events=64,
):
self.keypad = keypad.Keys(
Expand All @@ -96,7 +96,7 @@ def __init__(
key_count,
value_when_pressed=False,
interval=0.01,
debounce_threshold=2,
debounce_threshold=5,
max_events=64,
):
self.keypad = keypad.ShiftRegisterKeys(
Expand Down

0 comments on commit 458a2f8

Please sign in to comment.