]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/orthodox/keymaps/drashna/config.h
eed1cbe89fb4eee9eba0674411f6b0c09e6b9a7b
[qmk_firmware.git] / keyboards / orthodox / keymaps / drashna / config.h
1 /*
2 This is the c configuration file for the keymap
3
4 Copyright 2012 Jun Wako <wakojun@gmail.com>
5 Copyright 2015 Jack Humbert
6 Copyright 2017 Art Ortenburger
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #pragma once
23
24 /* Use I2C or Serial, not both */
25
26 #define USE_SERIAL
27 #undef USE_I2C
28
29 /* Select hand configuration */
30
31 // #define MASTER_LEFT
32 // #define MASTER_RIGHT
33 #define EE_HANDS
34
35 /* key combination for magic key command */
36 #define IS_COMMAND() ( \
37     get_mods() == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_LALT)) \
38 )
39
40 #ifdef RGBLIGHT_ENABLE
41 #define RGB_DI_PIN D3
42 #define RGBLED_NUM 16     // Number of LEDs
43
44 #define RGBLIGHT_HUE_STEP 12
45 #define RGBLIGHT_SAT_STEP 12
46 #define RGBLIGHT_VAL_STEP 12
47 #define RGBLIGHT_EFFECT_KNIGHT_LENGTH 2
48 #define RGBLIGHT_EFFECT_SNAKE_LENGTH 2
49 #define RGBLIGHT_EFFECT_BREATHE_CENTER 1
50 #endif // RGBLIGHT_ENABLE
51
52 #ifdef AUDIO_ENABLE
53 #define C6_AUDIO
54 #ifdef RGBLIGHT_ENABLE
55 #define NO_MUSIC_MODE
56 #endif
57 #endif //AUDIO_ENABLE
58
59 #undef PRODUCT
60 #ifdef KEYBOARD_orthodox_rev1
61 #define PRODUCT         Drashna Hacked Orthodox Rev.1
62 #elif KEYBOARD_orthodox_rev3
63 #define PRODUCT         Drashna Hacked Orthodox Rev.3
64 #endif
65
66 #define QMK_ESC_OUTPUT D7 // usually COL
67 #ifdef KEYBOARD_orthodox_rev1
68 #define QMK_ESC_INPUT D4 // usually ROW
69 #else
70 #define QMK_ESC_INPUT D2 // usually ROW
71 #endif
72 #define QMK_LED B0
73 #define QMK_SPEAKER C6
74
75 #define SHFT_LED1 5
76 #define SHFT_LED2 10
77
78 #define CTRL_LED1 6
79 #define CTRL_LED2 9
80
81 #define GUI_LED1 8
82 #define ALT_LED1 7