diff options
author | QMK Bot <hello@qmk.fm> | 2023-01-24 15:18:09 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2023-01-24 15:18:09 +0000 |
commit | 7ff55e67e11f127f29c6e71e382bfce2ad89bc64 (patch) | |
tree | 6df772c04aa7449cce740e69ffea16e01af21202 /docs | |
parent | d14863c00b1f0885453a20d480faca2681f330a0 (diff) | |
parent | 419a7944a461c78e985cf975a5a4e6bacbbeebd2 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs')
-rw-r--r-- | docs/understanding_qmk.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/understanding_qmk.md b/docs/understanding_qmk.md index ab7834e24a..7b436a45be 100644 --- a/docs/understanding_qmk.md +++ b/docs/understanding_qmk.md @@ -43,7 +43,7 @@ While there are different strategies for doing the actual matrix detection, they } ``` -That datastructure is a direct representation of the matrix for a 4 row by 5 column numpad. When a key is pressed that key's position within the matrix will be returned as `1` instead of `0`. +That datastructure is a direct representation of the matrix for a 5 row by 4 column numpad. When a key is pressed that key's position within the matrix will be returned as `1` instead of `0`. Matrix Scanning runs many times per second. The exact rate varies but typically it runs at least 10 times per second to avoid perceptible lag. |