diff options
Diffstat (limited to 'keyboards/planck/keymaps/inkwell/config.h')
-rw-r--r-- | keyboards/planck/keymaps/inkwell/config.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/inkwell/config.h b/keyboards/planck/keymaps/inkwell/config.h new file mode 100644 index 000000000..0396720df --- /dev/null +++ b/keyboards/planck/keymaps/inkwell/config.h | |||
@@ -0,0 +1,50 @@ | |||
1 | /* Copyright 2021 Kevin Hartley | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #ifdef AUDIO_ENABLE | ||
20 | #define STARTUP_SONG SONG(PLANCK_SOUND) | ||
21 | // #define STARTUP_SONG SONG(NO_SOUND) | ||
22 | |||
23 | #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ | ||
24 | SONG(COLEMAK_SOUND), \ | ||
25 | SONG(DVORAK_SOUND) \ | ||
26 | } | ||
27 | #endif | ||
28 | |||
29 | /* | ||
30 | * MIDI options | ||
31 | */ | ||
32 | |||
33 | /* enable basic MIDI features: | ||
34 | - MIDI notes can be sent when in Music mode is on | ||
35 | */ | ||
36 | |||
37 | #define MIDI_BASIC | ||
38 | |||
39 | /* enable advanced MIDI features: | ||
40 | - MIDI notes can be added to the keymap | ||
41 | - Octave shift and transpose | ||
42 | - Virtual sustain, portamento, and modulation wheel | ||
43 | - etc. | ||
44 | */ | ||
45 | //#define MIDI_ADVANCED | ||
46 | |||
47 | // Most tactile encoders have detents every 4 stages | ||
48 | #define ENCODER_RESOLUTION 4 | ||
49 | #define MOUSEKEY_WHEEL_TIME_TO_MAX 10 | ||
50 | #define MOUSEKEY_MAX_SPEED 12 | ||