aboutsummaryrefslogtreecommitdiff
path: root/keyboards/anavi/macropad8/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/anavi/macropad8/config.h')
-rw-r--r--keyboards/anavi/macropad8/config.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/keyboards/anavi/macropad8/config.h b/keyboards/anavi/macropad8/config.h
new file mode 100644
index 000000000..e517d909d
--- /dev/null
+++ b/keyboards/anavi/macropad8/config.h
@@ -0,0 +1,72 @@
1/*
2Copyright 2020 Leon Anavi <leon@anavi.org>
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 0xCEEB
24#define PRODUCT_ID 0x0001
25#define DEVICE_VER 0x0001
26#define MANUFACTURER ANAVI
27#define PRODUCT Macro Pad 8
28#define DESCRIPTION 8-key mechanical keyboard/keypad/macropad with backlit, mini OLED display and RGB LED strip
29
30/* key matrix size */
31#define MATRIX_ROWS 2
32#define MATRIX_COLS 4
33
34/*
35 * Keyboard Matrix Assignments
36 *
37 * Change this to how you wired your keyboard
38 * COLS: AVR pins used for columns, left to right
39 * ROWS: AVR pins used for rows, top to bottom
40 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
41 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
42 * NO_DIODE = switches are directly connected to AVR pins
43 *
44*/
45#define DIRECT_PINS { \
46 { D4, F6, B5, E6 }, \
47 { F5, F7, B4, C6 } \
48}
49
50#define BACKLIGHT_PIN D7
51#define BACKLIGHT_BREATHING
52#define BACKLIGHT_LEVELS 3
53#define RGBLIGHT_SLEEP
54
55#define UNUSED_PINS
56
57/* ws2812B RGB LED */
58#ifdef RGBLIGHT_ENABLE
59# define RGB_DI_PIN F4
60# define RGBLIGHT_ANIMATIONS
61# define RGBLED_NUM 4
62# define RGBLIGHT_HUE_STEP 10
63# define RGBLIGHT_SAT_STEP 17
64# define RGBLIGHT_VAL_STEP 17
65# define RGBLIGHT_LIMIT_VAL 255
66#endif
67
68#ifdef OLED_DRIVER_ENABLE
69# define OLED_DISPLAY_128X64
70# define OLED_TIMEOUT 60000
71# define OLED_FONT_H "keyboards/anavi/macropad8/glcdfont.c"
72#endif