]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/s65_x/config.h
qwerty_code_friendly: configurable left thumb
[qmk_firmware.git] / keyboards / s65_x / config.h
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #include "config_common.h"
5
6 /* USB Device descriptor parameter */
7 #define PRODUCT         S65-X-RGB
8 #define DESCRIPTION     q.m.k. keyboard firmware for S60-X RGB
9 #define VENDOR_ID       0xFEED
10 #define PRODUCT_ID      0x6060
11 #define DEVICE_VER      0x0001
12 #define MANUFACTURER    Sentraq
13
14 /* key matrix size */
15 #define MATRIX_ROWS 5
16 #define MATRIX_COLS 18
17
18 /* key matrix pins */
19 #define MATRIX_ROW_PINS { C7, C6, B6, B5, B4 }
20 #define MATRIX_COL_PINS { F6, F5, F4, F1, F0, E6, B0, B1, D5, B2, B3, D0, D1, D2, D4, D6, D7, F7 }
21 #define UNUSED_PINS
22
23 /* number of backlight levels */
24 #define BACKLIGHT_PIN B7
25 #define BACKLIGHT_LEVELS 3
26
27 #define RGB_DI_PIN D3
28 #define RGBLIGHT_ANIMATIONS
29 #define RGBLED_NUM 20
30 #define RGBLIGHT_HUE_STEP 8
31 #define RGBLIGHT_SAT_STEP 8
32 #define RGBLIGHT_VAL_STEP 8
33 #define RGBLIGHT_EFFECT_KNIGHT_OFFSET 20
34
35 /* COL2ROW or ROW2COL */
36 #define DIODE_DIRECTION COL2ROW
37
38 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
39 #define DEBOUNCING_DELAY 5
40
41 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
42 #define LOCKING_SUPPORT_ENABLE
43
44 /* Locking resynchronize hack */
45 #define LOCKING_RESYNC_ENABLE
46
47 /* key combination for command */
48 #define IS_COMMAND() ( \
49     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
50 )
51
52
53 /* prevent stuck modifiers */
54 #define PREVENT_STUCK_MODIFIERS
55
56 #endif