aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bm65iso/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bm65iso/config.h')
-rw-r--r--keyboards/bm65iso/config.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/keyboards/bm65iso/config.h b/keyboards/bm65iso/config.h
new file mode 100644
index 000000000..2bec40f14
--- /dev/null
+++ b/keyboards/bm65iso/config.h
@@ -0,0 +1,72 @@
1/*
2Copyright 2020 ipetepete, 2021 deadolus
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0x4B50 // "KP"
24#define PRODUCT_ID 0x0653
25#define DEVICE_VER 0x0001
26#define MANUFACTURER KP Republic
27#define PRODUCT BM65ISO
28
29/* key matrix size */
30#define MATRIX_ROWS 5
31#define MATRIX_COLS 15
32#define FORCE_NKRO
33
34/*
35 * Keyboard Matrix Assignments
36 *
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)
42 *
43 */
44#define MATRIX_ROW_PINS { B0, B1, B2, B3, E6 }
45#define MATRIX_COL_PINS { D0, D1, D2, D3, D5, D4, D6, D7, B4, B5, B6, C6, C7, F7, F6 }
46
47#define DIODE_DIRECTION COL2ROW
48
49#define RGB_DI_PIN E2
50#define DRIVER_LED_TOTAL 74
51#ifdef RGB_DI_PIN
52 #define RGBLED_NUM 74
53 #define RGB_MATRIX_KEYPRESSES
54 #define RGBLIGHT_HUE_STEP 8
55 #define RGBLIGHT_SAT_STEP 8
56 #define RGBLIGHT_VAL_STEP 8
57 #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 140
58#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_BAND_SAT
59 #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
60/*== all animations enable ==*/
61 #define RGBLIGHT_ANIMATIONS
62// /*== or choose animations ==*/
63// #define RGBLIGHT_EFFECT_BREATHING
64// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
65// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
66// #define RGBLIGHT_EFFECT_SNAKE
67// #define RGBLIGHT_EFFECT_KNIGHT
68// #define RGBLIGHT_EFFECT_CHRISTMAS
69// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
70// #define RGBLIGHT_EFFECT_RGB_TEST
71// #define RGBLIGHT_EFFECT_ALTERNATING
72#endif