summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2018-12-14 19:43:24 +0100
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-12-14 19:43:24 +0100
commit9739d6ba0ad3da93f42cc28a78a6722d39ad3d72 (patch)
tree765ea06ae341e64fa30ea594ab1d4f4f0d8e7c07 /docs
parent161ffa0af6b9af76b8e73a3f274bbc415ae9f842 (diff)
downloadqmk_firmware-9739d6ba0ad3da93f42cc28a78a6722d39ad3d72.tar.gz
qmk_firmware-9739d6ba0ad3da93f42cc28a78a6722d39ad3d72.tar.xz
Docs: Clarify audio keycodes (#4620)
* Clarify audio keycodes * Spelling errors Co-Authored-By: drashna <drashna@live.com> * Spacing in md Co-Authored-By: drashna <drashna@live.com> * Fix midi link too * Wordsmithing
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_audio.md10
-rw-r--r--docs/keycodes.md6
2 files changed, 9 insertions, 7 deletions
diff --git a/docs/feature_audio.md b/docs/feature_audio.md
index a39c45687..38861e8c1 100644
--- a/docs/feature_audio.md
+++ b/docs/feature_audio.md
@@ -61,9 +61,11 @@ It's advised that you wrap all audio features in `#ifdef AUDIO_ENABLE` / `#endif
The available keycodes for audio are:
-* `AU_ON` - Turn audio mode on
-* `AU_OFF` - Turn audio mode off
-* `AU_TOG` - Toggle audio mode
+* `AU_ON` - Turn Audio Feature on
+* `AU_OFF` - Turn Audio Feature off
+* `AU_TOG` - Toggle Audio Feature state
+
+!> These keycodes turn all of the audio functionality on and off. Turning it off means that audio feedback, audio clicky, music mode, etc. are disabled, completely.
## ARM Audio Volume
@@ -158,7 +160,7 @@ You can configure the default, min and max frequencies, the stepping and built i
## MIDI Functionality
-This is still a WIP, but check out `quantum/keymap_midi.c` to see what's happening. Enable from the Makefile.
+This is still a WIP, but check out `quantum/process_keycode/process_midi.c` to see what's happening. Enable from the Makefile.
## Audio Keycodes
diff --git a/docs/keycodes.md b/docs/keycodes.md
index 468b59f84..6d8525393 100644
--- a/docs/keycodes.md
+++ b/docs/keycodes.md
@@ -226,9 +226,9 @@ This is a reference only. Each group of keys links to the page documenting their
|Key |Aliases |Description |
|----------------|---------|----------------------------------|
-|`AU_ON` | |Audio mode on |
-|`AU_OFF` | |Audio mode off |
-|`AU_TOG` | |Toggles Audio mode |
+|`AU_ON` | |Turns on Audio Feature |
+|`AU_OFF` | |Turns off Audio Feature |
+|`AU_TOG` | |Toggles Audio state |
|`CLICKY_TOGGLE` |`CK_TOGG`|Toggles Audio clicky mode |
|`CLICKY_UP` |`CK_UP` |Increases frequency of the clicks |
|`CLICKY_DOWN` |`CK_DOWN`|Decreases frequency of the clicks |