aboutsummaryrefslogtreecommitdiff
path: root/docs/modding_your_keyboard.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/modding_your_keyboard.md')
-rw-r--r--docs/modding_your_keyboard.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/modding_your_keyboard.md b/docs/modding_your_keyboard.md
index 5613bf525..a58fbd52b 100644
--- a/docs/modding_your_keyboard.md
+++ b/docs/modding_your_keyboard.md
@@ -79,6 +79,10 @@ By default, `MUSIC_MASK` is set to `keycode < 0xFF` which means keycodes less th
79 79
80Which will capture all keycodes - be careful, this will get you stuck in music mode until you restart your keyboard! 80Which will capture all keycodes - be careful, this will get you stuck in music mode until you restart your keyboard!
81 81
82The pitch standard (`PITCH_STANDARD_A`) is 440.0f by default - to change this, add something like this to your `config.h`:
83
84 #define PITCH_STANDARD_A 432.0f
85
82## MIDI functionalty 86## MIDI functionalty
83 87
84This is still a WIP, but check out `quantum/keymap_midi.c` to see what's happening. Enable from the Makefile. 88This is still a WIP, but check out `quantum/keymap_midi.c` to see what's happening. Enable from the Makefile.