diff options
author | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
commit | dc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch) | |
tree | 4ccb8fa5886b66fa9d480edef74236c27f035e16 /keyboards/anavi/macropad8/config.h |
Diffstat (limited to 'keyboards/anavi/macropad8/config.h')
-rw-r--r-- | keyboards/anavi/macropad8/config.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/keyboards/anavi/macropad8/config.h b/keyboards/anavi/macropad8/config.h new file mode 100644 index 000000000..4ec8c7312 --- /dev/null +++ b/keyboards/anavi/macropad8/config.h | |||
@@ -0,0 +1,71 @@ | |||
1 | /* | ||
2 | Copyright 2020 Leon Anavi <[email protected]> | ||
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 0xCEEB | ||
24 | #define PRODUCT_ID 0x0001 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER ANAVI | ||
27 | #define PRODUCT Macro Pad 8 | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 2 | ||
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 | * NO_DIODE = switches are directly connected to AVR pins | ||
42 | * | ||
43 | */ | ||
44 | #define DIRECT_PINS { \ | ||
45 | { D4, F6, B5, E6 }, \ | ||
46 | { F5, F7, B4, C6 } \ | ||
47 | } | ||
48 | |||
49 | #define BACKLIGHT_PIN D7 | ||
50 | #define BACKLIGHT_BREATHING | ||
51 | #define BACKLIGHT_LEVELS 3 | ||
52 | #define RGBLIGHT_SLEEP | ||
53 | |||
54 | #define UNUSED_PINS | ||
55 | |||
56 | /* ws2812B RGB LED */ | ||
57 | #ifdef RGBLIGHT_ENABLE | ||
58 | # define RGB_DI_PIN F4 | ||
59 | # define RGBLIGHT_ANIMATIONS | ||
60 | # define RGBLED_NUM 4 | ||
61 | # define RGBLIGHT_HUE_STEP 10 | ||
62 | # define RGBLIGHT_SAT_STEP 17 | ||
63 | # define RGBLIGHT_VAL_STEP 17 | ||
64 | # define RGBLIGHT_LIMIT_VAL 255 | ||
65 | #endif | ||
66 | |||
67 | #ifdef OLED_ENABLE | ||
68 | # define OLED_DISPLAY_128X64 | ||
69 | # define OLED_TIMEOUT 60000 | ||
70 | # define OLED_FONT_H "keyboards/anavi/macropad8/glcdfont.c" | ||
71 | #endif | ||