diff --git a/docs/en/scanners.md b/docs/en/scanners.md index f8fd995ef..0f76a87a5 100644 --- a/docs/en/scanners.md +++ b/docs/en/scanners.md @@ -31,7 +31,7 @@ class MyKeyboard(KMKKeyboard): # optional arguments with defaults: columns_to_anodes=DiodeOrientation.COL2ROW, interval=0.01, # How often the matrix is sampled - debounce_threshold=2, # Number of samples needed to change state + debounce_threshold=5, # Number of samples needed to change state max_events=64 ) @@ -70,7 +70,7 @@ class MyKeyboard(KMKKeyboard): value_when_pressed=False, pull=True, interval=0.01, # How often the matrix is sampled - debounce_threshold=2, # Number of samples needed to change state + debounce_threshold=5, # Number of samples needed to change state max_events=64 ) ``` @@ -97,7 +97,7 @@ class MyKeyboard(KMKKeyboard): value_to_latch=True, # 74HC165: True, CD4021: False value_when_pressed=False, interval=0.01, # How often the matrix is sampled - debounce_threshold=2, # Number of samples needed to change state + debounce_threshold=5, # Number of samples needed to change state max_events=64 ) ```