]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/uk78/config.h
Fixed uk78 and turned Bootmagic off (#1725)
[qmk_firmware.git] / keyboards / uk78 / config.h
1 /*\r
2 Copyright 2017 Ruari Armstrong <ukkeyboards@gmail.com>\r
3 \r
4 This program is free software: you can redistribute it and/or modify\r
5 it under the terms of the GNU General Public License as published by\r
6 the Free Software Foundation, either version 2 of the License, or\r
7 (at your option) any later version.\r
8 \r
9 This program is distributed in the hope that it will be useful,\r
10 but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12 GNU General Public License for more details.\r
13 \r
14 You should have received a copy of the GNU General Public License\r
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
16 */\r
17 \r
18 #ifndef CONFIG_H\r
19 #define CONFIG_H\r
20 \r
21 #include "config_common.h"\r
22 \r
23 /* USB Device descriptor parameter */\r
24 #define VENDOR_ID       0x554B /* Ascii */\r
25 #define PRODUCT_ID      0x004E\r
26 #define DEVICE_VER      0x0002\r
27 #define MANUFACTURER    UK Keyboards\r
28 #define PRODUCT         UK78\r
29 #define DESCRIPTION     QMK keyboard firmware for UK78\r
30 \r
31 /* key matrix size */\r
32 #define MATRIX_ROWS 5\r
33 #define MATRIX_COLS 19\r
34 \r
35 /* key matrix pins */\r
36 #define MATRIX_ROW_PINS { F3, F2, F1, F0, A0 }\r
37 #define MATRIX_COL_PINS { A2, A1, F5, F4, E6, E7, E5, E4, B7, D0, D1, D2, D3, D4, D5, D6, D7, B5, E0 }\r
38 #define UNUSED_PINS\r
39 \r
40 /* COL2ROW or ROW2COL */\r
41 #define DIODE_DIRECTION COL2ROW\r
42 \r
43 /* number of backlight levels */\r
44 #define BACKLIGHT_PIN B6\r
45 #ifdef BACKLIGHT_PIN\r
46 #define BACKLIGHT_LEVELS 3\r
47 #endif\r
48 \r
49 /* Set 0 if debouncing isn't needed */\r
50 #define DEBOUNCING_DELAY 5\r
51 \r
52 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */\r
53 #define LOCKING_SUPPORT_ENABLE\r
54 \r
55 /* Locking resynchronize hack */\r
56 #define LOCKING_RESYNC_ENABLE\r
57 \r
58 /* key combination for command */\r
59 #define IS_COMMAND() ( \\r
60     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \\r
61 )\r
62 \r
63 /* prevent stuck modifiers */\r
64 #define PREVENT_STUCK_MODIFIERS\r
65 \r
66 /* ws2812b options */\r
67 #define RGB_DI_PIN F6\r
68 #ifdef RGB_DI_PIN\r
69 #define RGBLIGHT_ANIMATIONS\r
70 #define RGBLED_NUM 20\r
71 #define RGBLIGHT_HUE_STEP 8\r
72 #define RGBLIGHT_SAT_STEP 8\r
73 #define RGBLIGHT_VAL_STEP 8\r
74 #endif\r
75 \r
76 #endif\r