aboutsummaryrefslogtreecommitdiff
path: root/docs/glossary.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/glossary.md')
-rw-r--r--docs/glossary.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/glossary.md b/docs/glossary.md
index 2fd53ca97..e1103ec94 100644
--- a/docs/glossary.md
+++ b/docs/glossary.md
@@ -62,7 +62,7 @@ In-system programming, a method of programming an AVR chip using external hardwa
62An interface for receiving debugging messages from your keyboard. You can view these messages using [QMK Flasher](https://github.com/qmk/qmk_flasher) or [PJRC's hid_listen](https://www.pjrc.com/teensy/hid_listen.html) 62An interface for receiving debugging messages from your keyboard. You can view these messages using [QMK Flasher](https://github.com/qmk/qmk_flasher) or [PJRC's hid_listen](https://www.pjrc.com/teensy/hid_listen.html)
63 63
64## Keycode 64## Keycode
65A 2-byte number that represents a particular key. `0x00`-`0xFF` are used for [Basic Keycodes](keycodes.html) while `0x100`-`0xFFFF` are used for [Quantum Keycodes](quantum_keycodes.html). 65A 2-byte number that represents a particular key. `0x00`-`0xFF` are used for [Basic Keycodes](keycodes_basic.html) while `0x100`-`0xFFFF` are used for [Quantum Keycodes](quantum_keycodes.html).
66 66
67## Key Down 67## Key Down
68An event that happens when a key is pressed down, but is completed before a key is released. 68An event that happens when a key is pressed down, but is completed before a key is released.
@@ -79,7 +79,7 @@ An abstraction used to allow a key to serve multiple purposes. The highest activ
79## Leader Key 79## Leader Key
80A feature that allows you to tap the leader key followed by a sequence of 1, 2, or 3 keys to activate key presses or other quantum features. 80A feature that allows you to tap the leader key followed by a sequence of 1, 2, or 3 keys to activate key presses or other quantum features.
81 81
82* [Leader Key Documentation](leader_key.html) 82* [Leader Key Documentation](feature_leader_key.html)
83 83
84## LED 84## LED
85Light Emitting Diode, the most common device used for indicators on a keyboard. 85Light Emitting Diode, the most common device used for indicators on a keyboard.
@@ -141,7 +141,7 @@ Pressing and releasing a key. In some situations you will need to distinguish be
141## Tap Dance 141## Tap Dance
142A feature that lets you assign muiltple keycodes to the same key based on how many times you press it. 142A feature that lets you assign muiltple keycodes to the same key based on how many times you press it.
143 143
144* [Tap Dance Documentation](tap_dance.html) 144* [Tap Dance Documentation](tap_dance.md)
145 145
146## Teensy 146## Teensy
147A low-cost AVR development board that is commonly used for hand-wired builds. A teensy is often chosen despite costing a few dollors more due to its halfkay bootloader, which makes flashing very simple. 147A low-cost AVR development board that is commonly used for hand-wired builds. A teensy is often chosen despite costing a few dollors more due to its halfkay bootloader, which makes flashing very simple.
@@ -152,12 +152,12 @@ A generic term for LEDs that light the underside of the board. These LED's typic
152## Unicode 152## Unicode
153In the larger computer world Unicode is a set of encoding schemes for representing characters in any language. As it relates to QMK it means using various OS schemes to send unicode codepoints instead of scancodes. 153In the larger computer world Unicode is a set of encoding schemes for representing characters in any language. As it relates to QMK it means using various OS schemes to send unicode codepoints instead of scancodes.
154 154
155* [Unicode Documentation](unicode.html) 155* [Unicode Documentation](unicode.md)
156 156
157## Unit Testing 157## Unit Testing
158A framework for running automated tests against QMK. Unit testing helps us be confident that our changes do not break anything. 158A framework for running automated tests against QMK. Unit testing helps us be confident that our changes do not break anything.
159 159
160* [Unit Testing Documentation](unit_testing.html) 160* [Unit Testing Documentation](unit_testing.md)
161 161
162## USB 162## USB
163Universal Serial Bus, the most common wired interface for a keyboard. 163Universal Serial Bus, the most common wired interface for a keyboard.