aboutsummaryrefslogtreecommitdiff
path: root/keyboards/xbows/nature/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/xbows/nature/config.h')
-rw-r--r--keyboards/xbows/nature/config.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/keyboards/xbows/nature/config.h b/keyboards/xbows/nature/config.h
new file mode 100644
index 000000000..84b8a2af3
--- /dev/null
+++ b/keyboards/xbows/nature/config.h
@@ -0,0 +1,64 @@
1/* Copyright 2020 Shulin Huang <mumu@x-bows.com>
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "config_common.h"
19
20#define VENDOR_ID 0xFEED
21#define PRODUCT_ID 0x1226
22#define DEVICE_VER 0x0001
23#define MANUFACTURER X-BOWS
24#define PRODUCT NATURE
25
26#define MATRIX_ROWS 6
27#define MATRIX_COLS 15
28#define MATRIX_ROW_PINS { F7, F6, F5, F4, F1, F0 }
29#define MATRIX_COL_PINS { B0, B1, B2, B3, B7, D2, D3, D5, D4, D6, D7, B4, B5, B6, C6 }
30#define DIODE_DIRECTION COL2ROW
31
32#ifdef RGB_MATRIX_ENABLE
33# define RGB_MATRIX_LED_PROCESS_LIMIT 18
34# define RGB_MATRIX_LED_FLUSH_LIMIT 16
35# define DEBOUNCE 3
36# define RGB_DISABLE_AFTER_TIMEOUT 0 // number of ticks to wait until disabling effects
37# define RGB_DISABLE_WHEN_USB_SUSPENDED true // turn off effects when suspended
38# define RGB_MATRIX_KEYPRESSES
39# define RGB_MATRIX_MAXIMUM_BRIGHTNESS 200
40# define DISABLE_RGB_MATRIX_GRADIENT_UP_DOWN
41# define DISABLE_RGB_MATRIX_BAND_SAT
42# define DISABLE_RGB_MATRIX_BAND_PINWHEEL_SAT
43# define DISABLE_RGB_MATRIX_BAND_SPIRAL_SAT
44# define DISABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE
45# define DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
46# define DISABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS
47# define DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS
48# define DISABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS
49# define DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS
50# define DISABLE_RGB_MATRIX_SPLASH
51# define DISABLE_RGB_MATRIX_MULTISPLASH
52# define DISABLE_RGB_MATRIX_SOLID_SPLASH
53# define DISABLE_RGB_MATRIX_SOLID_MULTISPLASH
54# define DISABLE_RGB_MATRIX_DIGITAL_RAIN
55
56# define DRIVER_ADDR_1 0b1110100
57# define DRIVER_ADDR_2 0b1110110
58# define DRIVER_ADDR_3 0b1110101
59# define DRIVER_COUNT 3
60# define DRIVER_1_LED_TOTAL 36
61# define DRIVER_2_LED_TOTAL 36
62# define DRIVER_3_LED_TOTAL 15
63# define DRIVER_LED_TOTAL (DRIVER_1_LED_TOTAL + DRIVER_2_LED_TOTAL + DRIVER_3_LED_TOTAL)
64#endif