]> git.donarmstrong.com Git - qmk_firmware.git/blob - layouts/community/ortho_4x12/drashna/config.h
Update to drashna userspace and keymaps (#3172)
[qmk_firmware.git] / layouts / community / ortho_4x12 / drashna / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4
5 #if defined(RGBLIGHT_ENABLE) && !defined(RGBLED_NUM)
6 #define RGB_DI_PIN D3
7 #define RGBLED_NUM 16     // Number of LEDs
8 #define RGBLIGHT_ANIMATIONS
9 #define RGBLIGHT_HUE_STEP 12
10 #define RGBLIGHT_SAT_STEP 12
11 #define RGBLIGHT_VAL_STEP 12
12 #define RGBLIGHT_EFFECT_KNIGHT_LENGTH 2
13 #define RGBLIGHT_EFFECT_SNAKE_LENGTH 2
14 #define RGBLIGHT_EFFECT_BREATHE_CENTER 1
15 #endif // RGBLIGHT_ENABLE
16
17
18 #if defined(KEYBOARD_lets_split_rev2)
19 #define USE_SERIAL
20 #undef USE_I2C
21
22 #define EE_HANDS
23 #endif
24
25 #if defined(KEYBOARD_planck_rev5)
26 #ifdef RGBLIGHT_ENABLE
27 #define NO_MUSIC_MODE
28 #endif // RGBLIGHT_ENABLE
29 #endif // KEYBOARD_planck_rev5
30
31
32 /*
33  * MIDI options
34  */
35
36 /* Prevent use of disabled MIDI features in the keymap */
37 //#define MIDI_ENABLE_STRICT 1
38
39 /* enable basic MIDI features:
40    - MIDI notes can be sent when in Music mode is on
41 */
42
43 #define MIDI_BASIC
44
45 /* enable advanced MIDI features:
46    - MIDI notes can be added to the keymap
47    - Octave shift and transpose
48    - Virtual sustain, portamento, and modulation wheel
49    - etc.
50 */
51 //#define MIDI_ADVANCED
52
53 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
54 //#define MIDI_TONE_KEYCODE_OCTAVES 2
55
56 #endif