aboutsummaryrefslogtreecommitdiff
path: root/keyboards/ffkeebs/puca/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/ffkeebs/puca/config.h')
-rw-r--r--keyboards/ffkeebs/puca/config.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/keyboards/ffkeebs/puca/config.h b/keyboards/ffkeebs/puca/config.h
new file mode 100644
index 000000000..29bb9a782
--- /dev/null
+++ b/keyboards/ffkeebs/puca/config.h
@@ -0,0 +1,69 @@
1/*
2Copyright 2021 Sleepdealer
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 0x4646 // FF
24#define PRODUCT_ID 0x0002
25#define DEVICE_VER 0x0001
26#define MANUFACTURER FootFingers
27#define PRODUCT Puca
28
29#define MATRIX_ROWS 6
30#define MATRIX_COLS 5
31 // 0 , 1 , 2 , 3 , 4 , 5
32#define MATRIX_ROW_PINS { B4, E6, D7, B5, C6, F6}
33#define MATRIX_COL_PINS { F7, B1, B3, B2, B6}
34
35#define DIODE_DIRECTION COL2ROW
36
37#ifdef RGBLIGHT_ENABLE
38 #define RGB_DI_PIN D4
39
40 #define RGBLIGHT_EFFECT_BREATHING
41 #define RGBLIGHT_EFFECT_RAINBOW_MOOD
42 #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
43 #define RGBLIGHT_EFFECT_SNAKE
44 #define RGBLIGHT_EFFECT_KNIGHT
45 #define RGBLIGHT_EFFECT_CHRISTMAS
46 #define RGBLIGHT_EFFECT_STATIC_GRADIENT
47 #define RGBLIGHT_EFFECT_RGB_TEST
48 #define RGBLIGHT_EFFECT_ALTERNATING
49 #define RGBLIGHT_EFFECT_TWINKLE
50 #define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_STATIC_LIGHT
51 #define RGBLED_NUM 8
52#endif
53
54
55#define ENCODERS_PAD_A { F4 }
56#define ENCODERS_PAD_B { F5 }
57
58/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
59#define DEBOUNCE 5
60
61/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
62#define LOCKING_SUPPORT_ENABLE
63/* Locking resynchronize hack */
64#define LOCKING_RESYNC_ENABLE
65
66/* disable these deprecated features by default */
67#define NO_ACTION_MACRO
68#define NO_ACTION_FUNCTION
69