]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/hs60/v1/config.h
RGB Matrix Overhaul (#5372)
[qmk_firmware.git] / keyboards / hs60 / v1 / config.h
1 /*
2 Copyright 2018 Yiancar
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 #pragma once
19
20 #include "config_common.h"
21
22 /* USB Device descriptor parameter */
23 #define VENDOR_ID       0xFEED
24 #define PRODUCT_ID      0x0257
25 #define DEVICE_VER      0x0001
26 #define MANUFACTURER    Yiancar-Designs
27 #define PRODUCT         HS60
28 #define DESCRIPTION     GH60 compatible, tool free RGB keyboard
29
30 /* key matrix size */
31 #define MATRIX_ROWS 5
32 #define MATRIX_COLS 14
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, F7 }
45 #define MATRIX_COL_PINS { F1, F4, F5, E6, F0, B7, D2, D3, D5, D4, D6, D7, B4, B5 }
46 #define UNUSED_PINS     { B6, C6, C7, F6 }
47
48 /* bootloader configuration */
49
50 #define QMK_ESC_OUTPUT B5 // usually COL
51 #define QMK_ESC_INPUT B2 // usually ROW
52
53 /* COL2ROW, ROW2COL*/
54 #define DIODE_DIRECTION COL2ROW
55
56 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
57 #define DEBOUNCING_DELAY 5
58
59 /* define if matrix has ghost (lacks anti-ghosting diodes) */
60 //#define MATRIX_HAS_GHOST
61
62 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
63 #define LOCKING_SUPPORT_ENABLE
64 /* Locking resynchronize hack */
65 #define LOCKING_RESYNC_ENABLE
66
67 /* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
68  * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
69  */
70 // #define GRAVE_ESC_CTRL_OVERRIDE
71
72 /*
73  * Force NKRO
74  *
75  * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
76  * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
77  * makefile for this to work.)
78  *
79  * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
80  * until the next keyboard reset.
81  *
82  * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
83  * fully operational during normal computer usage.
84  *
85  * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
86  * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
87  * bootmagic, NKRO mode will always be enabled until it is toggled again during a
88  * power-up.
89  *
90  */
91 //#define FORCE_NKRO
92
93 /*
94  * Magic Key Options
95  *
96  * Magic keys are hotkey commands that allow control over firmware functions of
97  * the keyboard. They are best used in combination with the HID Listen program,
98  * found here: https://www.pjrc.com/teensy/hid_listen.html
99  *
100  * The options below allow the magic key functionality to be changed. This is
101  * useful if your keyboard/keypad is missing keys and you want magic key support.
102  *
103  */
104
105 /*
106  * Feature disable options
107  *  These options are also useful to firmware size reduction.
108  */
109
110 /* disable debug print */
111 //#define NO_DEBUG
112
113 /* disable print */
114 //#define NO_PRINT
115
116 /* Backlight options */
117
118 //This is experimental do not enable yet
119 //#define RGB_MATRIX_KEYPRESSES // reacts to keypresses (will slow down matrix scan by a lot)
120
121 #define RGB_DISABLE_AFTER_TIMEOUT 0 // number of ticks to wait until disabling effects
122 #define RGB_DISABLE_WHEN_USB_SUSPENDED false // turn off effects when suspended
123 #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 215
124
125 #define DRIVER_ADDR_1 0b1110100
126 #define DRIVER_ADDR_2 0b1110101
127
128 #define DRIVER_COUNT 2
129 #define DRIVER_1_LED_TOTAL 30
130
131 #ifdef  HS60_ANSI
132 #define DRIVER_2_LED_TOTAL 31
133 #else
134 #define DRIVER_2_LED_TOTAL 32
135 #endif
136
137 #define DRIVER_LED_TOTAL DRIVER_1_LED_TOTAL + DRIVER_2_LED_TOTAL