From 6a67ec0da9e85b0d28c0015f12d0a1d99452f637 Mon Sep 17 00:00:00 2001 From: "regicidal.plutophage" <36969337+regicidalplutophage@users.noreply.github.com> Date: Thu, 7 Nov 2024 23:05:04 +0300 Subject: [PATCH] Update scanners.md --- docs/en/scanners.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/scanners.md b/docs/en/scanners.md index 0f76a87a5..5817a6ddd 100644 --- a/docs/en/scanners.md +++ b/docs/en/scanners.md @@ -30,7 +30,7 @@ class MyKeyboard(KMKKeyboard): row_pins=self.row_pins, # optional arguments with defaults: columns_to_anodes=DiodeOrientation.COL2ROW, - interval=0.01, # How often the matrix is sampled + interval=0.01, # Matrix sampling interval in ms debounce_threshold=5, # Number of samples needed to change state max_events=64 ) @@ -69,7 +69,7 @@ class MyKeyboard(KMKKeyboard): # optional arguments with defaults: value_when_pressed=False, pull=True, - interval=0.01, # How often the matrix is sampled + interval=0.01, # Matrix sampling interval in ms debounce_threshold=5, # Number of samples needed to change state max_events=64 ) @@ -96,7 +96,7 @@ class MyKeyboard(KMKKeyboard): # optional arguments with defaults: value_to_latch=True, # 74HC165: True, CD4021: False value_when_pressed=False, - interval=0.01, # How often the matrix is sampled + interval=0.01, # Matrix sampling interval in ms debounce_threshold=5, # Number of samples needed to change state max_events=64 )