]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/s60-x/rgb/config.h
- Fixed bugs in rules.mk for S60-X
[qmk_firmware.git] / keyboards / s60-x / rgb / config.h
1 #ifndef RBG_CONFIG_H
2 #define RBG_CONFIG_H
3
4 #include "../config.h"
5
6 #define PRODUCT         S60-X-RGB
7 #define DESCRIPTION     q.m.k. keyboard firmware for S60-X RGB
8
9 /* key matrix pins */
10 #define MATRIX_ROW_PINS { B5, B4, D7, D6, D4 }
11 #define MATRIX_COL_PINS { D0, D1, D2, D3, D5, B6, C6, C7, F1, F0, E6, B3, B2, B1, B0 }
12 #define UNUSED_PINS
13
14 /* number of backlight levels */
15 #define BACKLIGHT_PIN B7
16 #ifdef BACKLIGHT_PIN
17 #define BACKLIGHT_LEVELS 3
18 #endif
19
20 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
21 #define LOCKING_SUPPORT_ENABLE
22
23 /* Locking resynchronize hack */
24 #define LOCKING_RESYNC_ENABLE
25
26 /* prevent stuck modifiers */
27 #define PREVENT_STUCK_MODIFIERS
28
29 #define RGB_DI_PIN F6
30 #ifdef RGB_DI_PIN
31 #define RGBLIGHT_ANIMATIONS
32 #define RGBLED_NUM 10
33 #define RGBLIGHT_HUE_STEP 8
34 #define RGBLIGHT_SAT_STEP 8
35 #define RGBLIGHT_VAL_STEP 8
36 #endif
37
38 #endif