diff options
Diffstat (limited to 'keyboards/cozykeys/bloomer/config.h')
-rw-r--r-- | keyboards/cozykeys/bloomer/config.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/keyboards/cozykeys/bloomer/config.h b/keyboards/cozykeys/bloomer/config.h new file mode 100644 index 000000000..0f285b4d0 --- /dev/null +++ b/keyboards/cozykeys/bloomer/config.h | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | Copyright 2021 Paul Ewing | ||
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 | #pragma once | ||
18 | |||
19 | #include "config_common.h" | ||
20 | |||
21 | // USB Device descriptor parameter | ||
22 | #define VENDOR_ID 0xFEED | ||
23 | #define PRODUCT_ID 0x1191 | ||
24 | #define MANUFACTURER CozyKeys | ||
25 | #define PRODUCT Bloomer | ||
26 | |||
27 | // Key matrix size | ||
28 | #define MATRIX_ROWS 6 | ||
29 | #define MATRIX_COLS 15 | ||
30 | |||
31 | // Enable RGB backlight | ||
32 | #ifdef RGBLIGHT_ENABLE | ||
33 | #define RGB_DI_PIN D7 | ||
34 | #define RGBLED_NUM 12 | ||
35 | #define RGBLIGHT_HUE_STEP 8 | ||
36 | #define RGBLIGHT_SAT_STEP 8 | ||
37 | #define RGBLIGHT_VAL_STEP 8 | ||
38 | #define RGBLIGHT_LIMIT_VAL 255 | ||
39 | #define RGBLIGHT_SLEEP | ||
40 | #define RGBLIGHT_ANIMATIONS | ||
41 | #define RGBLIGHT_BREATHE_TABLE_SIZE 256 | ||
42 | #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 | ||
43 | #define RGBLIGHT_EFFECT_BREATHE_MAX 255 | ||
44 | #endif | ||
45 | |||
46 | // Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed | ||
47 | #define DEBOUNCE 5 | ||
48 | |||
49 | // Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap | ||
50 | #define LOCKING_SUPPORT_ENABLE | ||
51 | // Locking resynchronize hack | ||
52 | #define LOCKING_RESYNC_ENABLE | ||
53 | |||