aboutsummaryrefslogtreecommitdiff
path: root/keyboard/clueboard2/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/clueboard2/config.h')
-rw-r--r--keyboard/clueboard2/config.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/keyboard/clueboard2/config.h b/keyboard/clueboard2/config.h
new file mode 100644
index 000000000..04166c20f
--- /dev/null
+++ b/keyboard/clueboard2/config.h
@@ -0,0 +1,100 @@
1/*
2Copyright 2012 Jun Wako <wakojun@gmail.com>
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#ifndef CONFIG_H
19#define CONFIG_H
20
21#include "config_common.h"
22
23/* USB Device descriptor parameter */
24#define VENDOR_ID 0xC1ED
25#define PRODUCT_ID 0x2320
26#define DEVICE_VER 0x0001
27#define MANUFACTURER Clueboard
28#define PRODUCT Clueboard with RGB Underlighting
29#define DESCRIPTION QMK keyboard firmware for Clueboard
30
31/* key matrix size */
32#define MATRIX_ROWS 10
33#define MATRIX_COLS 8
34
35// COLS: Left to right, ROWS: Top to bottom
36
37/* Column pin configuration
38 * col: 0 1 2 3 4 5 6 7
39 * pin: F0 F1 F4 F5 F6 F7 E6 B1
40 */
41#define COLS (int []){ F0, F1, F4, F5, F6, F7, E6, B1 }
42
43 /* Row pin configuration
44 * row: 0 1 2 3 4 5 6 7 8 9
45 * pin: B2 C7 C6 B6 B5 B0 B3 D5 D3 D2
46 */
47#define ROWS (int []){ B2, C7, C6, B6, B5, B0, B3, D5, D3, D2 }
48
49/* COL2ROW or ROW2COL */
50#define DIODE_DIRECTION COL2ROW
51
52/* define if matrix has ghost */
53//#define MATRIX_HAS_GHOST
54
55/* Set 0 if debouncing isn't needed */
56#define DEBOUNCE 5
57
58/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
59#define LOCKING_SUPPORT_ENABLE
60/* Locking resynchronize hack */
61#define LOCKING_RESYNC_ENABLE
62
63/* key combination for command */
64#define IS_COMMAND() ( \
65 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
66)
67
68/* Backlight configuration
69 */
70#define BACKLIGHT_LEVELS 1
71
72/* Underlight configuration
73 */
74 #define ws2812_PORTREG PORTD
75 #define ws2812_DDRREG DDRD
76 #define ws2812_pin 7
77 #define RGBLED_NUM 14 // Number of LEDs
78 #define RGBLIGHT_HUE_STEP 10
79 #define RGBLIGHT_SAT_STEP 17
80 #define RGBLIGHT_VAL_STEP 17
81
82/*
83 * Feature disable options
84 * These options are also useful to firmware size reduction.
85 */
86
87/* disable debug print */
88//#define NO_DEBUG
89
90/* disable print */
91//#define NO_PRINT
92
93/* disable action features */
94//#define NO_ACTION_LAYER
95//#define NO_ACTION_TAPPING
96//#define NO_ACTION_ONESHOT
97//#define NO_ACTION_MACRO
98//#define NO_ACTION_FUNCTION
99
100#endif