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