aboutsummaryrefslogtreecommitdiff
path: root/keyboards/s65_x/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/s65_x/config.h')
-rw-r--r--keyboards/s65_x/config.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/keyboards/s65_x/config.h b/keyboards/s65_x/config.h
new file mode 100644
index 000000000..0af9f6dd1
--- /dev/null
+++ b/keyboards/s65_x/config.h
@@ -0,0 +1,55 @@
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
34/* COL2ROW or ROW2COL */
35#define DIODE_DIRECTION COL2ROW
36
37/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
38#define DEBOUNCING_DELAY 5
39
40/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
41#define LOCKING_SUPPORT_ENABLE
42
43/* Locking resynchronize hack */
44#define LOCKING_RESYNC_ENABLE
45
46/* key combination for command */
47#define IS_COMMAND() ( \
48 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
49)
50
51
52/* prevent stuck modifiers */
53#define PREVENT_STUCK_MODIFIERS
54
55#endif