]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/hineybush/h87a/config.h
2e6c37e33fd7363c4c139b1df3aee9290b2fea31
[qmk_firmware.git] / keyboards / hineybush / h87a / config.h
1 /*
2 Copyright 2018 Josh Hinnebusch
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 /* USB Device descriptor parameter */
19 #define VENDOR_ID       0xFEED
20 #define PRODUCT_ID      0x0000
21 #define DEVICE_VER      0x0001
22 #define MANUFACTURER    hineybush
23 #define PRODUCT         h87a
24 #define DESCRIPTION     QMK-programmable TKL PCB for custom keyboards
25
26 #define CONFIG_H
27
28 #include "config_common.h"
29
30 /* key matrix size */
31 #define MATRIX_ROWS 12
32 #define MATRIX_COLS 9
33
34 /*
35  * Keyboard Matrix Assignments
36  *
37  * Change this to how you wired your keyboard
38  * COLS: AVR pins used for columns, left to right
39  * ROWS: AVR pins used for rows, top to bottom
40  * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
41  *                  ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
42  *
43 */
44 #define MATRIX_ROW_PINS { B0, B1, B2, B3, D0, D1, B5, B6, D7, B4, D6, D4 }
45 #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7, C6, D2 }
46 #define UNUSED_PINS
47
48 /* COL2ROW, ROW2COL*/
49 #define DIODE_DIRECTION COL2ROW
50
51 #define BACKLIGHT_PIN B7
52 // #define BACKLIGHT_BREATHING
53 #define BACKLIGHT_LEVELS 3
54
55 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
56 #define DEBOUNCING_DELAY 5
57
58 /* define if matrix has ghost (lacks anti-ghosting diodes) */
59 //#define MATRIX_HAS_GHOST
60
61 /* number of backlight levels */
62
63 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
64 #define LOCKING_SUPPORT_ENABLE
65 /* Locking resynchronize hack */
66 #define LOCKING_RESYNC_ENABLE
67
68 #define RGB_DI_PIN D3
69 #ifdef RGB_DI_PIN
70 #define RGBLIGHT_ANIMATIONS
71 #define RGBLED_NUM 24
72 #define RGBLIGHT_HUE_STEP 8
73 #define RGBLIGHT_SAT_STEP 8
74 #define RGBLIGHT_VAL_STEP 8
75 #define RGBLIGHT_SLEEP // RGB will turn off when PC is put to sleep
76 #endif