aboutsummaryrefslogtreecommitdiff
path: root/keyboards/kapcave/paladinpad/rev2/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/kapcave/paladinpad/rev2/config.h')
-rw-r--r--keyboards/kapcave/paladinpad/rev2/config.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/keyboards/kapcave/paladinpad/rev2/config.h b/keyboards/kapcave/paladinpad/rev2/config.h
new file mode 100644
index 000000000..a27ac03ab
--- /dev/null
+++ b/keyboards/kapcave/paladinpad/rev2/config.h
@@ -0,0 +1,47 @@
1/*
2Copyright 2021 KapCave
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#pragma once
18
19#include "config_common.h"
20
21#define DEVICE_VER 0x0002
22
23/* key matrix pins */
24#define MATRIX_ROW_PINS { F4, F6, D7, B4, D6 }
25#define MATRIX_COL_PINS { F7, F5, D3, B7 }
26
27#define AUDIO_PIN C6
28
29#define RGB_DI_PIN D0
30
31#ifdef RGB_DI_PIN
32#define RGBLIGHT_EFFECT_BREATHING
33#define RGBLIGHT_EFFECT_RAINBOW_MOOD
34#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
35#define RGBLIGHT_EFFECT_SNAKE
36#define RGBLIGHT_EFFECT_KNIGHT
37#define RGBLIGHT_EFFECT_CHRISTMAS
38#define RGBLIGHT_EFFECT_STATIC_GRADIENT
39#define RGBLIGHT_EFFECT_RGB_TEST
40#define RGBLIGHT_EFFECT_ALTERNATING
41#define RGBLIGHT_EFFECT_TWINKLE
42#define RGBLED_NUM 7
43#define RGBLIGHT_HUE_STEP 10
44#define RGBLIGHT_SAT_STEP 17
45#define RGBLIGHT_VAL_STEP 12
46#endif
47