aboutsummaryrefslogtreecommitdiff
path: root/keyboards/do60/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/do60/config.h')
-rw-r--r--keyboards/do60/config.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/keyboards/do60/config.h b/keyboards/do60/config.h
new file mode 100644
index 000000000..8a0f324aa
--- /dev/null
+++ b/keyboards/do60/config.h
@@ -0,0 +1,76 @@
1/*
2Copyright 2012 Doyu Studio <[email protected]>
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
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0x4453 // DS for Doyu Studios
24#define PRODUCT_ID 0x6060
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Shopkey by Doyu Studio
27#define PRODUCT Do60
28
29/* key matrix size */
30#define MATRIX_ROWS 5
31#define MATRIX_COLS 15
32
33/*
34 * Keyboard Matrix Assignments
35 *
36 * Change this to how you wired your keyboard
37 * COLS: AVR pins used for columns, left to right
38 * ROWS: AVR pins used for rows, top to bottom
39 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
40 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
41 *
42*/
43#define MATRIX_ROW_PINS { D0, D1, D2, D3, D5 }
44#define MATRIX_COL_PINS { F0, F1, E6, C7, C6, B6, D4, B1, B7, F4, B4, D7, D6, B3, B0 }
45#define UNUSED_PINS
46
47#define LED_CAPS_LOCK_PIN B2
48#define LED_PIN_ON_STATE 0
49
50/* Backlight Setup */
51#define BACKLIGHT_PIN B5
52#define BACKLIGHT_LEVELS 6
53//#define BACKLIGHT_BREATHING
54
55/* COL2ROW or ROW2COL */
56#define DIODE_DIRECTION COL2ROW
57
58/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
59#define DEBOUNCE 5
60
61/* RGB Underglow
62 * F5 PIN for DO60's pre-soldered WS2812 LEDs
63 */
64#define RGB_DI_PIN F5
65#define RGBLIGHT_ANIMATIONS
66#define RGBLED_NUM 20 // Number of LEDs
67#define RGBLIGHT_HUE_STEP 10
68#define RGBLIGHT_SAT_STEP 15
69#define RGBLIGHT_VAL_STEP 15
70
71/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
72#define LOCKING_SUPPORT_ENABLE
73/* Locking resynchronize hack */
74#define LOCKING_RESYNC_ENABLE
75
76#define TAPPING_TERM 200