diff options
Diffstat (limited to 'keyboards/handwired/obro/config.h')
-rw-r--r-- | keyboards/handwired/obro/config.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/keyboards/handwired/obro/config.h b/keyboards/handwired/obro/config.h new file mode 100644 index 000000000..1217214dd --- /dev/null +++ b/keyboards/handwired/obro/config.h | |||
@@ -0,0 +1,58 @@ | |||
1 | /* | ||
2 | Copyright 2022 Holten Campbell | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0x5052 | ||
24 | #define PRODUCT_ID 0x0042 | ||
25 | #define DEVICE_VER 0x0002 | ||
26 | #define MANUFACTURER Prime Keyboards | ||
27 | #define PRODUCT obro | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 5 | ||
31 | #define MATRIX_COLS 14 | ||
32 | |||
33 | #define MATRIX_COL_PINS { C7, C6, B6, B5, B4, F7, D4, B7, B3, D5, D3, D2, D1, D0 } | ||
34 | #define MATRIX_ROW_PINS { E6, F0, F6, D7, D6 } | ||
35 | |||
36 | #define DIODE_DIRECTION COL2ROW | ||
37 | |||
38 | #define RGB_DI_PIN F1 | ||
39 | #define RGBLED_NUM 64 | ||
40 | #define RGBLIGHT_EFFECT_BREATHING | ||
41 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
42 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
43 | #define RGBLIGHT_EFFECT_SNAKE | ||
44 | #define RGBLIGHT_EFFECT_KNIGHT | ||
45 | #define RGBLIGHT_EFFECT_CHRISTMAS | ||
46 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
47 | #define RGBLIGHT_EFFECT_RGB_TEST | ||
48 | #define RGBLIGHT_EFFECT_ALTERNATING | ||
49 | #define RGBLIGHT_EFFECT_TWINKLE | ||
50 | #define RGBLIGHT_LIMIT_VAL 200 | ||
51 | |||
52 | /* Set 0 if debouncing isn't needed */ | ||
53 | #define DEBOUNCE 5 | ||
54 | |||
55 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
56 | #define LOCKING_SUPPORT_ENABLE | ||
57 | /* Locking resynchronize hack */ | ||
58 | #define LOCKING_RESYNC_ENABLE | ||