]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/aviator/config.h
Keymap: Adding my DZ60, Satan, XD75 kemaps and updates to userspace (#4039)
[qmk_firmware.git] / keyboards / planck / keymaps / aviator / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4 #include "config_common.h"
5
6 #ifndef LIGHT_CONFIG_H
7 #define BACKLIGHT_BREATHING
8 #define BREATHING_PERIOD 3
9 #endif
10
11 #ifdef AUDIO_ENABLE
12     #define STARTUP_SONG SONG(PLANCK_SOUND)
13     // #define STARTUP_SONG SONG(NO_SOUND)
14
15     #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
16                                   SONG(COLEMAK_SOUND), \
17                                   SONG(DVORAK_SOUND) \
18                                 }
19 #endif
20
21 #define MUSIC_MASK (keycode != KC_NO)
22
23 /*
24  * MIDI options
25  */
26
27 /* Prevent use of disabled MIDI features in the keymap */
28 //#define MIDI_ENABLE_STRICT 1
29
30 /* enable basic MIDI features:
31    - MIDI notes can be sent when in Music mode is on
32 */
33
34 #define MIDI_BASIC
35
36 /* enable advanced MIDI features:
37    - MIDI notes can be added to the keymap
38    - Octave shift and transpose
39    - Virtual sustain, portamento, and modulation wheel
40    - etc.
41 */
42 //#define MIDI_ADVANCED
43
44 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
45 //#define MIDI_TONE_KEYCODE_OCTAVES 2
46
47 #endif