2020 February 29 Breaking Changes Update (#8064)
[jackhill/qmk/firmware.git] / keyboards / planck / keymaps / myoung34 / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4 #include "../../config.h"
5
6 #undef WORKMAN_SOUND
7 #define WORKMAN_SOUND COLEMAK_SOUND
8
9 #ifdef AUDIO_ENABLE
10 #define STARTUP_SONG SONG(PLANCK_SOUND)
11 // #define STARTUP_SONG SONG(NO_SOUND)
12
13 #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
14 SONG(COLEMAK_SOUND), \
15 SONG(DVORAK_SOUND) \
16 }
17 #endif
18
19 #define MUSIC_MASK (keycode != KC_NO)
20
21 /*
22 * MIDI options
23 */
24
25 /* Prevent use of disabled MIDI features in the keymap */
26 //#define MIDI_ENABLE_STRICT 1
27
28 /* enable basic MIDI features:
29 - MIDI notes can be sent when in Music mode is on
30 */
31
32 // #define MIDI_BASIC
33
34 /* enable advanced MIDI features:
35 - MIDI notes can be added to the keymap
36 - Octave shift and transpose
37 - Virtual sustain, portamento, and modulation wheel
38 - etc.
39 */
40 //#define MIDI_ADVANCED
41
42 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
43 //#define MIDI_TONE_KEYCODE_OCTAVES 2
44
45 #define RGB_DI_PIN B2 // The pin the LED strip is connected to (PB2 by default)
46 #define RGBLED_NUM 3 // Number of LEDs in your strip
47 #define RGBLIGHT_ANIMATIONS
48
49 #endif