aboutsummaryrefslogtreecommitdiff
path: root/keyboards/buildakb/potato65s/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/buildakb/potato65s/config.h')
-rw-r--r--keyboards/buildakb/potato65s/config.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/keyboards/buildakb/potato65s/config.h b/keyboards/buildakb/potato65s/config.h
new file mode 100644
index 000000000..518332785
--- /dev/null
+++ b/keyboards/buildakb/potato65s/config.h
@@ -0,0 +1,72 @@
1/*
2Copyright 2021 Maelkk
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 0x4A56
24#define PRODUCT_ID 0x0003
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Maelkk
27#define PRODUCT Potato 65 Solderable
28
29/* key matrix size */
30#define MATRIX_ROWS 5
31#define MATRIX_COLS 15
32
33/* key matrix pins */
34#define MATRIX_ROW_PINS { F5, F4, F6, F0, D2 }
35#define MATRIX_COL_PINS { D3, D4, D6, D7, B4, B5, B6, F1, B0, B1, B2, B3, B7, D0, D1 }
36#define UNUSED_PINS
37
38/* COL2ROW or ROW2COL */
39#define DIODE_DIRECTION COL2ROW
40
41/* Set 0 if debouncing isn't needed */
42#define DEBOUNCE 5
43
44/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
45#define LOCKING_SUPPORT_ENABLE
46
47/* Locking resynchronize hack */
48#define LOCKING_RESYNC_ENABLE
49
50/* disable these deprecated features by default */
51#define NO_ACTION_MACRO
52#define NO_ACTION_FUNCTION
53
54#define RGB_DI_PIN D5
55#ifdef RGB_DI_PIN
56# define RGBLIGHT_EFFECT_BREATHING
57# define RGBLIGHT_EFFECT_RAINBOW_MOOD
58# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
59# define RGBLIGHT_EFFECT_SNAKE
60# define RGBLIGHT_EFFECT_KNIGHT
61# define RGBLIGHT_EFFECT_CHRISTMAS
62# define RGBLIGHT_EFFECT_STATIC_GRADIENT
63# define RGBLIGHT_EFFECT_RGB_TEST
64# define RGBLIGHT_EFFECT_ALTERNATING
65# define RGBLIGHT_EFFECT_TWINKLE
66# define RGBLED_NUM 16
67# define RGBLIGHT_HUE_STEP 8
68# define RGBLIGHT_SAT_STEP 8
69# define RGBLIGHT_VAL_STEP 8
70# define RGBLIGHT_LIMIT_VAL 240
71# define RGBLIGHT_SLEEP
72#endif