]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/clueboard2/config.h
Renames keyboard folder to keyboards, adds couple of tmk's fixes (#432)
[qmk_firmware.git] / keyboards / clueboard2 / 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      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 // ROWS: Top to bottom, COLS: Left to right
36 /* Row pin configuration
37 * row: 0  1  2  3  4  5  6  7  8  9
38 * pin: B2 C7 C6 B6 B5 B0 B3 D5 D3 D2
39 */
40 #define MATRIX_ROW_PINS { B2, C7, C6, B6, B5, B0, B3, D5, D3, D2 }
41 /* Column pin configuration
42  * col: 0  1  2  3  4  5  6  7
43  * pin: F0 F1 F4 F5 F6 F7 E6 B1
44  */
45 #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, E6, B1 }
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 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
58 #define LOCKING_SUPPORT_ENABLE
59 /* Locking resynchronize hack */
60 #define LOCKING_RESYNC_ENABLE
61
62 /* key combination for command */
63 #define IS_COMMAND() ( \
64     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
65 )
66
67 /* Backlight configuration
68  */
69 #define BACKLIGHT_LEVELS 1
70
71 /* Underlight configuration
72  */
73  #define ws2812_PORTREG PORTD
74  #define ws2812_DDRREG DDRD
75  #define ws2812_pin 7
76  #define RGBLED_NUM 14     // Number of LEDs
77  #define RGBLIGHT_HUE_STEP 10
78  #define RGBLIGHT_SAT_STEP 17
79  #define RGBLIGHT_VAL_STEP 17
80
81 /*
82  * Feature disable options
83  *  These options are also useful to firmware size reduction.
84  */
85
86 /* disable debug print */
87 //#define NO_DEBUG
88
89 /* disable print */
90 //#define NO_PRINT
91
92 /* disable action features */
93 //#define NO_ACTION_LAYER
94 //#define NO_ACTION_TAPPING
95 //#define NO_ACTION_ONESHOT
96 //#define NO_ACTION_MACRO
97 //#define NO_ACTION_FUNCTION
98
99 #endif