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