diff options
Diffstat (limited to 'keyboards/dumbpad/v1x_right/config.h')
-rw-r--r-- | keyboards/dumbpad/v1x_right/config.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/keyboards/dumbpad/v1x_right/config.h b/keyboards/dumbpad/v1x_right/config.h new file mode 100644 index 000000000..23c2685dd --- /dev/null +++ b/keyboards/dumbpad/v1x_right/config.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | Copyright 2020 imchipwood | ||
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 | #pragma once | ||
18 | |||
19 | #include "config_common.h" | ||
20 | |||
21 | /* USB Device descriptor parameter */ | ||
22 | #define DEVICE_VER 0x0010 | ||
23 | |||
24 | /* Column/Row IO definitions */ | ||
25 | #define MATRIX_ROWS 4 | ||
26 | #define MATRIX_COLS 5 | ||
27 | #define MATRIX_ROW_PINS { F4, F5, F6, F7 } | ||
28 | #define MATRIX_COL_PINS { B5, B4, E6, D7, C6 } | ||
29 | #define UNUSED_PINS | ||
30 | |||
31 | /* Single rotary encoder */ | ||
32 | #define ENCODERS_PAD_A { D4 } | ||
33 | #define ENCODERS_PAD_B { B2 } | ||
34 | |||
35 | /* Onboard LEDs - reversed */ | ||
36 | #define LED_00 B3 | ||
37 | #define LED_01 B1 | ||
38 | #define LED_02 B6 | ||
39 | |||
40 | /* Bootmagic - hold down rotary encoder pushbutton while plugging in to enter bootloader */ | ||
41 | #define BOOTMAGIC_LITE_ROW 3 | ||
42 | #define BOOTMAGIC_LITE_COLUMN 4 | ||