diff options
author | Nick Choi <nikchi@users.noreply.github.com> | 2017-05-30 14:17:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 14:17:48 -0400 |
commit | 2c9f846608cbf91ce936071372634194745994d0 (patch) | |
tree | 7fc260baa3bca7ba748117e07fca8aaa186943dd /docs/Kiibohd.asciidoc | |
parent | 5393bc6f4eee3d3cb83997e5b03d8e5a5cea85d8 (diff) | |
parent | cb791cf6cdbcd9fd1291f36f6b1a6840753db97f (diff) |
Merge pull request #2 from qmk/master
pull in new qmk changes
Diffstat (limited to 'docs/Kiibohd.asciidoc')
-rw-r--r-- | docs/Kiibohd.asciidoc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/Kiibohd.asciidoc b/docs/Kiibohd.asciidoc new file mode 100644 index 0000000000..4a7ee64d8c --- /dev/null +++ b/docs/Kiibohd.asciidoc @@ -0,0 +1,29 @@ +== KLL vs TMK +1. **Shift** = Memontary +1. Latch = One shot +1. Lock = Toggle + +## KLL terminology +### Fall-through +When a key is undefined on a particular layer, the key +definition on the previously stacked layer will be used. Eventually +the key definition will be set to using the default layer. If the None +keyword is used, then the fall-through will stop and no action will +take place. +###Latch +When referring to keyboards, a key function that is only enabled +until the release of the next keypress. +###Lock +When referring to keyboards, a key function that is enabled until +that key is pressed again (e.g. Caps Lock). +### NKRO +N-Key Rollover is the capability to press N number of keys at the +same time on a keyboard and have them all register on the OS simultaneously. +### Scan Code +Row x Column code or native protocol code used by the keyboard. +### Shift +When referring to keyboards, a key function that is enabled while +that key is held. +### USB Code +Keyboard Press/Release codes as defined by the USB HID +Spec.
\ No newline at end of file |