diff options
Diffstat (limited to 'keyboards/pearlboards/zeuspad/config.h')
-rw-r--r-- | keyboards/pearlboards/zeuspad/config.h | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/keyboards/pearlboards/zeuspad/config.h b/keyboards/pearlboards/zeuspad/config.h new file mode 100644 index 000000000..3c12bfae1 --- /dev/null +++ b/keyboards/pearlboards/zeuspad/config.h | |||
@@ -0,0 +1,90 @@ | |||
1 | /* | ||
2 | Copyright 2021 Koobaczech | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along 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 0x6963 | ||
24 | #define PRODUCT_ID 0x6967 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER Koobaczech | ||
27 | #define PRODUCT Zeuspad | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 6 | ||
31 | #define MATRIX_COLS 4 | ||
32 | |||
33 | /* | ||
34 | * Keyboard Matrix Assignments | ||
35 | * | ||
36 | * Change this to how you wired your keyboard | ||
37 | * COLS: AVR pins used for columns, left to right | ||
38 | * ROWS: AVR pins used for rows, top to bottom | ||
39 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
41 | * | ||
42 | */ | ||
43 | #define MATRIX_ROW_PINS { D2, D3, D5, F7, F4, F1 } | ||
44 | #define MATRIX_COL_PINS { B0, F0, F5, F6 } | ||
45 | #define UNUSED_PINS | ||
46 | |||
47 | /* COL2ROW, ROW2COL*/ | ||
48 | #define DIODE_DIRECTION COL2ROW | ||
49 | |||
50 | /* OLED Settings */ | ||
51 | #define OLED_TIMEOUT 120000 | ||
52 | #define OLED_FADE_OUT | ||
53 | /* Audio Function */ | ||
54 | #define AUDIO_CLICKY | ||
55 | #define AUDIO_PIN C6 | ||
56 | |||
57 | /* Encoder Function */ | ||
58 | #define ENCODERS_PAD_A { D6 } | ||
59 | #define ENCODERS_PAD_B { D4 } | ||
60 | //#define ENCODER_DIRECTION_FLIP | ||
61 | #define ENCODER_RESOLUTION 1 | ||
62 | |||
63 | /*== all animations enabled ==*/ | ||
64 | /* If RGBLIGHT_SLEEP defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
65 | #define RGB_DI_PIN B7 | ||
66 | #ifdef RGB_DI_PIN | ||
67 | #define RGBLIGHT_EFFECT_ALTERNATING | ||
68 | #define RGBLIGHT_EFFECT_BREATHING | ||
69 | #define RGBLIGHT_EFFECT_CHRISTMAS | ||
70 | #define RGBLIGHT_EFFECT_KNIGHT | ||
71 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
72 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
73 | #define RGBLIGHT_EFFECT_SNAKE | ||
74 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
75 | #define RGBLIGHT_EFFECT_TWINKLE | ||
76 | #define RGBLED_NUM 2 | ||
77 | #define RGBLIGHT_HUE_STEP 8 | ||
78 | #define RGBLIGHT_SAT_STEP 8 | ||
79 | #define RGBLIGHT_VAL_STEP 8 | ||
80 | #define RGBLIGHT_SLEEP | ||
81 | #endif | ||
82 | |||
83 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
84 | #define DEBOUNCE 0 | ||
85 | |||
86 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
87 | #define LOCKING_SUPPORT_ENABLE | ||
88 | |||
89 | /* Locking resynchronize hack */ | ||
90 | #define LOCKING_RESYNC_ENABLE | ||