]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/satan/keymaps/admiralStrokers/config.h
17e0ea3b7635d1e76cda1fdbf2d48df53c1ffc63
[qmk_firmware.git] / keyboards / satan / keymaps / admiralStrokers / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.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_H_ADMSTROK
19 #define CONFIG_H_ADMSTROK
20
21 #include "config_common.h"
22 #include "../../config.h"
23
24 /* USB Device descriptor parameter */
25 #define VENDOR_ID       0xFEED
26 #define PRODUCT_ID      0x6060
27 #define DEVICE_VER      0x0003
28 #define MANUFACTURER    SATAN
29 #define PRODUCT         GH60
30 #define DESCRIPTION     QMK keyboard firmware for Satan GH60 with WS2812 support
31
32 /* key matrix size */
33 #define MATRIX_ROWS 5
34 #define MATRIX_COLS 14
35
36 // ROWS: Top to bottom, COLS: Left to right
37
38 #define MATRIX_ROW_PINS { D0, D1, D2, D3, D5 }
39 #define MATRIX_COL_PINS { F0, F1, E6, C7, C6, B7, D4, B1, B0, B5, B4, D7, D6, B3 }
40 #define UNUSED_PINS
41
42 #define BACKLIGHT_PIN B6
43
44 /* COL2ROW or ROW2COL */
45 #define DIODE_DIRECTION COL2ROW
46
47 /* define if matrix has ghost */
48 //#define MATRIX_HAS_GHOST
49
50 /* Set 0 if debouncing isn't needed */
51 #define DEBOUNCING_DELAY 5
52
53 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
54 #define LOCKING_SUPPORT_ENABLE
55 /* Locking resynchronize hack */
56 #define LOCKING_RESYNC_ENABLE
57
58 /* Backlight configuration */
59 #define BACKLIGHT_LEVELS 4
60
61 /* Underlight configuration */
62 #define RGB_DI_PIN E2
63 #define RGBLIGHT_ANIMATIONS
64 #define RGBLED_NUM 8     // Number of LEDs
65 #define RGBLIGHT_HUE_STEP 10
66 #define RGBLIGHT_SAT_STEP 17
67 #define RGBLIGHT_VAL_STEP 17
68
69 #define DISABLE_SPACE_CADET_ROLLOVER
70
71 /*
72  * Feature disable options
73  *  These options are also useful to firmware size reduction.
74  */
75
76 /* disable debug print */
77 //#define NO_DEBUG
78
79 /* disable print */
80 //#define NO_PRINT
81
82 /* disable action features */
83 //#define NO_ACTION_LAYER
84 //#define NO_ACTION_TAPPING
85 //#define NO_ACTION_ONESHOT
86 //#define NO_ACTION_MACRO
87 //#define NO_ACTION_FUNCTION
88
89 #endif