diff options
author | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
commit | dc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch) | |
tree | 4ccb8fa5886b66fa9d480edef74236c27f035e16 /keyboards/dumbpad/v0x_dualencoder/config.h |
Diffstat (limited to 'keyboards/dumbpad/v0x_dualencoder/config.h')
-rw-r--r-- | keyboards/dumbpad/v0x_dualencoder/config.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/keyboards/dumbpad/v0x_dualencoder/config.h b/keyboards/dumbpad/v0x_dualencoder/config.h new file mode 100644 index 000000000..586e55056 --- /dev/null +++ b/keyboards/dumbpad/v0x_dualencoder/config.h | |||
@@ -0,0 +1,40 @@ | |||
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 0x0006 | ||
23 | |||
24 | /* Column/Row IO definitions - dualencoder version is true 4x4 */ | ||
25 | #define MATRIX_ROWS 4 | ||
26 | #define MATRIX_COLS 4 | ||
27 | #define MATRIX_ROW_PINS { F4, F5, F6, F7 } | ||
28 | #define MATRIX_COL_PINS { D7, E6, B4, B5 } | ||
29 | |||
30 | /* Dual rotary encoders */ | ||
31 | #define ENCODERS_PAD_A { C6, D0 } | ||
32 | #define ENCODERS_PAD_B { D4, D1 } | ||
33 | |||
34 | /* Onboard LEDs */ | ||
35 | #define LED_00 B3 | ||
36 | #define LED_01 B1 | ||
37 | |||
38 | /* Bootmagic - hold down rotary encoder pushbutton while plugging in to enter bootloader */ | ||
39 | #define BOOTMAGIC_LITE_ROW 3 | ||
40 | #define BOOTMAGIC_LITE_COLUMN 0 | ||