]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/clueboard1/config.h
1801e3d2cc4d99e33d98a15c3db4a9b1dcff33b9
[qmk_firmware.git] / keyboard / 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 // COLS: Left to right, ROWS: Top to bottom
36
37 /* Column pin configuration
38  * col: 0  1  2  3  4  5  6  7  8  9  10 11 12 13 14 15
39  * pin: B3 F1 F4 F5 F6 C7 C6 B6 B5 B4 D7 D6 D4 F7 B0 B1
40  */
41 #define COLS (int []){ B3, F1, F4, F5, F6, C7, C6, B6, B5, B4, D7, D6, D4, F7, B0, B1 }
42
43  /* Row pin configuration
44  * row: 0  1  2  3  4
45  * pin: D1 D0 D2 D5 D3
46  */
47 #define ROWS (int []){ D1, D0, D2, D5, D3 }
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 /* Underlight configuration
69  */
70  #define ws2812_PORTREG PORTF
71  #define ws2812_DDRREG DDRF
72  #define ws2812_pin 6
73  #define RGBLED_NUM 14     // Number of LEDs
74  #define RGBLIGHT_HUE_STEP 10
75  #define RGBLIGHT_SAT_STEP 17
76  #define RGBLIGHT_VAL_STEP 17
77
78 /*
79  * Feature disable options
80  *  These options are also useful to firmware size reduction.
81  */
82
83 /* disable debug print */
84 //#define NO_DEBUG
85
86 /* disable print */
87 //#define NO_PRINT
88
89 /* disable action features */
90 //#define NO_ACTION_LAYER
91 //#define NO_ACTION_TAPPING
92 //#define NO_ACTION_ONESHOT
93 //#define NO_ACTION_MACRO
94 //#define NO_ACTION_FUNCTION
95
96 #endif