2 Copyright 2018 Josh Hinnebusch
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.
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.
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/>.
18 /* USB Device descriptor parameter */
19 #define VENDOR_ID 0xFEED
20 #define PRODUCT_ID 0x0000
21 #define DEVICE_VER 0x0001
22 #define MANUFACTURER hineybush
24 #define DESCRIPTION QMK-programmable TKL PCB for custom keyboards
28 #include "config_common.h"
31 #define MATRIX_ROWS 12
35 * Keyboard Matrix Assignments
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)
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 }
48 /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */
49 #define DIODE_DIRECTION COL2ROW
51 #define BACKLIGHT_PIN B7
52 // #define BACKLIGHT_BREATHING
53 #define BACKLIGHT_LEVELS 3
56 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
57 #define DEBOUNCING_DELAY 5
59 /* define if matrix has ghost (lacks anti-ghosting diodes) */
60 //#define MATRIX_HAS_GHOST
62 /* number of backlight levels */
64 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
65 #define LOCKING_SUPPORT_ENABLE
66 /* Locking resynchronize hack */
67 #define LOCKING_RESYNC_ENABLE
69 /* key combination for magic key command */
70 #define IS_COMMAND() ( \
71 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
76 #define RGBLIGHT_ANIMATIONS
78 #define RGBLIGHT_HUE_STEP 8
79 #define RGBLIGHT_SAT_STEP 8
80 #define RGBLIGHT_VAL_STEP 8