aboutsummaryrefslogtreecommitdiff
path: root/keyboards/alpha/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/alpha/config.h')
-rwxr-xr-xkeyboards/alpha/config.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/keyboards/alpha/config.h b/keyboards/alpha/config.h
new file mode 100755
index 000000000..ae1c69656
--- /dev/null
+++ b/keyboards/alpha/config.h
@@ -0,0 +1,46 @@
1#pragma once
2
3#include "config_common.h"
4
5/* USB Device descriptor parameter */
6#define VENDOR_ID 0xFEED
7#define PRODUCT_ID 0x6060
8#define DEVICE_VER 0x0001
9#define MANUFACTURER PyroL
10#define PRODUCT alpha
11
12/* key matrix size */
13#define MATRIX_ROWS 3
14#define MATRIX_COLS 10
15
16/* key matrix pins */
17#define MATRIX_ROW_PINS { D4, B4, B5 }
18#define MATRIX_COL_PINS { D7, E6, C6, B6, B2, B3, B1, F7, F6, F5 }
19#define UNUSED_PINS
20
21/* COL2ROW or ROW2COL */
22#define DIODE_DIRECTION COL2ROW
23
24/* number of backlight levels */
25
26#ifdef BACKLIGHT_PIN
27#define BACKLIGHT_LEVELS 3
28#endif
29
30/* Set 0 if debouncing isn't needed */
31#define DEBOUNCE 5
32
33/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
34#define LOCKING_SUPPORT_ENABLE
35
36/* Locking resynchronize hack */
37#define LOCKING_RESYNC_ENABLE
38
39#define RGB_DI_PIN F4
40#ifdef RGB_DI_PIN
41#define RGBLIGHT_ANIMATIONS
42#define RGBLED_NUM 5
43#define RGBLIGHT_HUE_STEP 8
44#define RGBLIGHT_SAT_STEP 8
45#define RGBLIGHT_VAL_STEP 8
46#endif