Kiibohd.asciidoc 1017 B

1234567891011121314151617181920212223242526272829
  1. == KLL vs TMK
  2. 1. **Shift** = Memontary
  3. 1. Latch = One shot
  4. 1. Lock = Toggle
  5. ## KLL terminology
  6. ### Fall-through
  7. When a key is undefined on a particular layer, the key
  8. definition on the previously stacked layer will be used. Eventually
  9. the key definition will be set to using the default layer. If the None
  10. keyword is used, then the fall-through will stop and no action will
  11. take place.
  12. ###Latch
  13. When referring to keyboards, a key function that is only enabled
  14. until the release of the next keypress.
  15. ###Lock
  16. When referring to keyboards, a key function that is enabled until
  17. that key is pressed again (e.g. Caps Lock).
  18. ### NKRO
  19. N-Key Rollover is the capability to press N number of keys at the
  20. same time on a keyboard and have them all register on the OS simultaneously.
  21. ### Scan Code
  22. Row x Column code or native protocol code used by the keyboard.
  23. ### Shift
  24. When referring to keyboards, a key function that is enabled while
  25. that key is held.
  26. ### USB Code
  27. Keyboard Press/Release codes as defined by the USB HID
  28. Spec.