aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
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
61 61
62The available keycodes for audio are: 62The available keycodes for audio are:
63 63
64* `AU_ON` - Turn audio mode on 64* `AU_ON` - Turn Audio Feature on
65* `AU_OFF` - Turn audio mode off 65* `AU_OFF` - Turn Audio Feature off
66* `AU_TOG` - Toggle audio mode 66* `AU_TOG` - Toggle Audio Feature state
67
68!> 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.
67 69
68## ARM Audio Volume 70## ARM Audio Volume
69 71
@@ -158,7 +160,7 @@ You can configure the default, min and max frequencies, the stepping and built i
158 160
159## MIDI Functionality 161## MIDI Functionality
160 162
161This is still a WIP, but check out `quantum/keymap_midi.c` to see what's happening. Enable from the Makefile. 163This is still a WIP, but check out `quantum/process_keycode/process_midi.c` to see what's happening. Enable from the Makefile.
162 164
163 165
164## Audio Keycodes 166## 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
226 226
227|Key |Aliases |Description | 227|Key |Aliases |Description |
228|----------------|---------|----------------------------------| 228|----------------|---------|----------------------------------|
229|`AU_ON` | |Audio mode on | 229|`AU_ON` | |Turns on Audio Feature |
230|`AU_OFF` | |Audio mode off | 230|`AU_OFF` | |Turns off Audio Feature |
231|`AU_TOG` | |Toggles Audio mode | 231|`AU_TOG` | |Toggles Audio state |
232|`CLICKY_TOGGLE` |`CK_TOGG`|Toggles Audio clicky mode | 232|`CLICKY_TOGGLE` |`CK_TOGG`|Toggles Audio clicky mode |
233|`CLICKY_UP` |`CK_UP` |Increases frequency of the clicks | 233|`CLICKY_UP` |`CK_UP` |Increases frequency of the clicks |
234|`CLICKY_DOWN` |`CK_DOWN`|Decreases frequency of the clicks | 234|`CLICKY_DOWN` |`CK_DOWN`|Decreases frequency of the clicks |