aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dumbpad/v0x_right/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dumbpad/v0x_right/config.h')
-rw-r--r--keyboards/dumbpad/v0x_right/config.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/dumbpad/v0x_right/config.h b/keyboards/dumbpad/v0x_right/config.h
new file mode 100644
index 000000000..0380203fd
--- /dev/null
+++ b/keyboards/dumbpad/v0x_right/config.h
@@ -0,0 +1,39 @@
1/*
2Copyright 2020 imchipwood
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#pragma once
18
19/* USB Device descriptor parameter */
20#define DEVICE_VER 0x0007
21
22/* Column/Row IO definitions */
23#define MATRIX_ROWS 4
24#define MATRIX_COLS 5
25#define MATRIX_ROW_PINS { F4, F5, F6, F7 }
26#define MATRIX_COL_PINS { B5, B4, E6, D7, C6 }
27#define UNUSED_PINS
28
29/* Single rotary encoder */
30#define ENCODERS_PAD_A { D4 }
31#define ENCODERS_PAD_B { D0 }
32
33/* Onboard LEDs */
34#define LED_00 B1
35#define LED_01 B3
36
37/* Bootmagic - hold down rotary encoder pushbutton while plugging in to enter bootloader */
38#define BOOTMAGIC_LITE_ROW 3
39#define BOOTMAGIC_LITE_COLUMN 4