]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/clueboard1/config.h
Renames keyboard folder to keyboards, adds couple of tmk's fixes (#432)
[qmk_firmware.git] / keyboards / clueboard1 / 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      0x2301
26 #define DEVICE_VER      0x0003
27 #define MANUFACTURER    Clueboard
28 #define PRODUCT         Clueboard
29 #define DESCRIPTION     QMK keyboard firmware for Clueboard
30
31 /* key matrix size */
32 #define MATRIX_ROWS 5
33 #define MATRIX_COLS 16
34
35 // ROWS: Top to bottom, COLS: Left to right
36 /* Column pin configuration
37 * col: 0  1  2  3  4  5  6  7  8  9  10 11 12 13 14 15
38 * pin: B3 F1 F4 F5 F6 C7 C6 B6 B5 B4 D7 D6 D4 F7 B0 B1
39 */
40 #define MATRIX_COL_PINS { B3, F1, F4, F5, F6, C7, C6, B6, B5, B4, D7, D6, D4, F7, B0, B1 }
41 /* Row pin configuration
42 * row: 0  1  2  3  4
43 * pin: D1 D0 D2 D5 D3
44 */
45 #define MATRIX_ROW_PINS { D1, D0, D2, D5, D3 }
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 /* Underlight configuration
68  */
69  #define ws2812_PORTREG PORTB
70  #define ws2812_DDRREG DDRB
71  #define ws2812_pin 2
72  #define RGBLED_NUM 14     // Number of LEDs
73  #define RGBLIGHT_HUE_STEP 10
74  #define RGBLIGHT_SAT_STEP 17
75  #define RGBLIGHT_VAL_STEP 17
76
77 /*
78  * Feature disable options
79  *  These options are also useful to firmware size reduction.
80  */
81
82 /* disable debug print */
83 //#define NO_DEBUG
84
85 /* disable print */
86 //#define NO_PRINT
87
88 /* disable action features */
89 //#define NO_ACTION_LAYER
90 //#define NO_ACTION_TAPPING
91 //#define NO_ACTION_ONESHOT
92 //#define NO_ACTION_MACRO
93 //#define NO_ACTION_FUNCTION
94
95 #endif