]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/lfkeyboards/mini1800/config.h
Lfkeyboards updates (#2421)
[qmk_firmware.git] / keyboards / lfkeyboards / mini1800 / 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 #define VENDOR_ID       0xFEED
24 #define PRODUCT_ID      0x6060
25 #define DEVICE_VER      0x0001
26 #define MANUFACTURER    LFKeyboards
27 #define PRODUCT         LFK87
28 #define DESCRIPTION     QMK keyboard firmware for LFK87
29
30 #define DIODE_DIRECTION COL2ROW
31
32 /* Matrix config */
33     #define MATRIX_ROWS 5
34     #define MATRIX_COLS 19
35     #define MATRIX_ROW_PINS {D7, E1, F2, F0, F1}
36     #define MATRIX_COL_PINS {E6, E0, A3, A4, A5, A6, A7, C7, C5, C4, C3, C2, C1, C0, D6, A2, A1, A0, F3}
37     #define UNUSED_PINS {}
38     #define RGBLED_NUM 26     // Number of LEDs
39
40 #define AUDIO_VOICES
41 #define C6_AUDIO
42
43 #define BACKLIGHT_LEVELS 10
44 #define BACKLIGHT_PWM_MAP {2, 4, 8, 16, 40, 55, 70, 128, 200, 255}
45
46 #define RGB_DI_PIN F4  // Have to set it to something to get the ws2812 code to compile
47 #define RGBLIGHT_ANIMATIONS
48 #define RGBLIGHT_HUE_STEP 10
49 #define RGBLIGHT_SAT_STEP 17
50 #define RGBLIGHT_VAL_STEP 17
51
52 #define TAPPING_TERM 200
53
54 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
55 #define DEBOUNCING_DELAY 5
56
57 /* define if matrix has ghost (lacks anti-ghosting diodes) */
58 //#define MATRIX_HAS_GHOST
59
60 /* number of backlight levels */
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 /*
68  * Force NKRO
69  *
70  * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
71  * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
72  * makefile for this to work.)
73  *
74  * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
75  * until the next keyboard reset.
76  *
77  * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
78  * fully operational during normal computer usage.
79  *
80  * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
81  * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
82  * bootmagic, NKRO mode will always be enabled until it is toggled again during a
83  * power-up.
84  *
85  */
86 //#define FORCE_NKRO
87
88 /*
89  * Magic Key Options
90  *
91  * Magic keys are hotkey commands that allow control over firmware functions of
92  * the keyboard. They are best used in combination with the HID Listen program,
93  * found here: https://www.pjrc.com/teensy/hid_listen.html
94  *
95  * The options below allow the magic key functionality to be changed. This is
96  * useful if your keyboard/keypad is missing keys and you want magic key support.
97  *
98  */
99
100 /* key combination for magic key command */
101 #define IS_COMMAND() ( \
102     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
103 )
104
105 /* control how magic key switches layers */
106 //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS  true
107 //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS  true
108 //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
109
110 /* override magic key keymap */
111 //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
112 //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
113 //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
114 //#define MAGIC_KEY_HELP1          H
115 //#define MAGIC_KEY_HELP2          SLASH
116 //#define MAGIC_KEY_DEBUG          D
117 //#define MAGIC_KEY_DEBUG_MATRIX   X
118 //#define MAGIC_KEY_DEBUG_KBD      K
119 //#define MAGIC_KEY_DEBUG_MOUSE    M
120 //#define MAGIC_KEY_VERSION        V
121 //#define MAGIC_KEY_STATUS         S
122 //#define MAGIC_KEY_CONSOLE        C
123 //#define MAGIC_KEY_LAYER0_ALT1    ESC
124 //#define MAGIC_KEY_LAYER0_ALT2    GRAVE
125 //#define MAGIC_KEY_LAYER0         0
126 //#define MAGIC_KEY_LAYER1         1
127 //#define MAGIC_KEY_LAYER2         2
128 //#define MAGIC_KEY_LAYER3         3
129 //#define MAGIC_KEY_LAYER4         4
130 //#define MAGIC_KEY_LAYER5         5
131 //#define MAGIC_KEY_LAYER6         6
132 //#define MAGIC_KEY_LAYER7         7
133 //#define MAGIC_KEY_LAYER8         8
134 //#define MAGIC_KEY_LAYER9         9
135 //#define MAGIC_KEY_BOOTLOADER     PAUSE
136 //#define MAGIC_KEY_LOCK           CAPS
137 //#define MAGIC_KEY_EEPROM         E
138 //#define MAGIC_KEY_NKRO           N
139 //#define MAGIC_KEY_SLEEP_LED      Z
140
141 /*
142  * Feature disable options
143  *  These options are also useful to firmware size reduction.
144  */
145
146 /* disable debug print */
147 //#define NO_DEBUG
148
149 /* disable print */
150 //#define NO_PRINT
151
152 /* disable action features */
153 //#define NO_ACTION_LAYER
154 //#define NO_ACTION_TAPPING
155 //#define NO_ACTION_ONESHOT
156 //#define NO_ACTION_MACRO
157 //#define NO_ACTION_FUNCTION
158
159 #endif