]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/clueboard_17/config.h
Clueboard 60% support (#1746)
[qmk_firmware.git] / keyboards / clueboard_17 / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
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
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      0x2312
26 #define DEVICE_VER      0x0001
27 #define MANUFACTURER    Clueboard
28 #define PRODUCT         Cluepad with RGB Underlighting
29 #define DESCRIPTION     QMK keyboard firmware for Cluepad
30
31 /* key matrix size */
32 #define MATRIX_ROWS 5
33 #define MATRIX_COLS 4
34
35 // ROWS: Top to bottom, COLS: Left to right
36 /* Row pin configuration
37 * row: 0  1  2  3  4
38 * pin:
39 */
40 #define MATRIX_ROW_PINS { B0, D3, D5, D4, D6 }
41 /* Column pin configuration
42  * col: 0  1  2  3
43  * pin: F4 E6 B1 D2
44  */
45 #define MATRIX_COL_PINS { F4, E6, B1, D2 }
46 #define UNUSED_PINS
47
48 /* COL2ROW or ROW2COL */
49 #define DIODE_DIRECTION COL2ROW
50
51 /* define if matrix has ghost */
52 //#define MATRIX_HAS_GHOST
53
54 /* Set 0 if debouncing isn't needed */
55 #define DEBOUNCING_DELAY 5
56
57 /* Number of backlighting levels */
58 #define BACKLIGHT_LEVELS 3
59
60 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
61 #define LOCKING_SUPPORT_ENABLE
62 /* Locking resynchronize hack */
63 #define LOCKING_RESYNC_ENABLE
64
65 /* key combination for command */
66 #define IS_COMMAND() ( \
67     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
68 )
69
70 /* Underlight configuration
71  */
72 #define RGB_DI_PIN F6
73 #define RGBLIGHT_ANIMATIONS
74 #define RGBLED_NUM 4     // Number of LEDs
75 #define RGBLIGHT_HUE_STEP 10
76 #define RGBLIGHT_SAT_STEP 17
77 #define RGBLIGHT_VAL_STEP 17
78
79 /*
80  * Feature disable options
81  *  These options are also useful to firmware size reduction.
82  */
83
84 /* disable debug print */
85 //#define NO_DEBUG
86
87 /* Debug forcibly enabled */
88 #define ALWAYS_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