]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/viterbi/keymaps/drashna/config.h
Update to drashna files (#2587)
[qmk_firmware.git] / keyboards / viterbi / keymaps / drashna / config.h
1 /*
2 Copyright 2017 Danny Nguyen <danny@hexwire.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef CONFIG_USER_H
19 #define CONFIG_USER_H
20
21 #include QMK_KEYBOARD_CONFIG_H
22
23
24 #ifdef RGBLIGHT_ENABLE
25 #undef RGBLED_NUM
26 #define RGBLIGHT_ANIMATIONS
27 #define RGBLED_NUM 16
28 #define RGBLIGHT_HUE_STEP 8
29 #define RGBLIGHT_SAT_STEP 8
30 #define RGBLIGHT_VAL_STEP 8
31 #define RGBLIGHT_EFFECT_KNIGHT_LENGTH 2
32 #define RGBLIGHT_EFFECT_SNAKE_LENGTH 2
33 #define RGBLIGHT_EFFECT_BREATHE_CENTER 1
34 #define RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL 300
35 #define RGBLIGHT_EFFECT_CHRISTMAS_STEP 1
36 #endif // RGBLIGHT_ENABLE
37
38
39 #undef LOCKING_SUPPORT_ENABLE
40 #undef LOCKING_RESYNC_ENABLE
41
42 #ifndef NO_DEBUG
43 #define NO_DEBUG
44 #endif // !NO_DEBUG
45 #ifndef NO_PRINT
46 #define NO_PRINT
47 #endif // !NO_PRINT
48
49 /* disable action features */
50 //#define NO_ACTION_LAYER
51 //#define NO_ACTION_TAPPING
52 //#define NO_ACTION_ONESHOT
53 //#define NO_ACTION_MACRO
54 //#define NO_ACTION_FUNCTION
55
56 #undef PRODUCT
57 #define PRODUCT   Drashnas Viterbi Macro Pad
58
59 #define USE_I2C
60
61 #ifdef AUDIO_ENABLE
62 #define C6_AUDIO
63 #define NO_MUSIC_MODE
64 #endif
65
66 #define LAYOUT_ortho_5x7( \
67     L00, L01, L02, L03, L04, L05, L06, \
68     L10, L11, L12, L13, L14, L15, L16, \
69     L20, L21, L22, L23, L24, L25, L26, \
70     L30, L31, L32, L33, L34, L35, L36, \
71     L40, L41, L42, L43, L44, L45, L46 \
72     ) \
73     KEYMAP( \
74         L00, L01, L02, L03, L04, L05, L06, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
75         L10, L11, L12, L13, L14, L15, L16, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
76         L20, L21, L22, L23, L24, L25, L26, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
77         L30, L31, L32, L33, L34, L35, L36, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
78         L40, L41, L42, L43, L44, L45, L46, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO \
79     )
80
81 #endif