aboutsummaryrefslogtreecommitdiff
path: root/keyboards/anavi/macropad8/config.h
diff options
context:
space:
mode:
authorLeon Anavi <leon@anavi.org>2020-06-05 10:48:58 +0300
committerGitHub <noreply@github.com>2020-06-05 00:48:58 -0700
commitf4ff225c004702b030f01ea0da98f9e966b7de80 (patch)
treeb6151a1bc2c23f5232475084a9a71a981e5f156a /keyboards/anavi/macropad8/config.h
parenta68b0ed9a25dcbfd616faabab10a123c3c0710fd (diff)
downloadqmk_firmware-f4ff225c004702b030f01ea0da98f9e966b7de80.tar.gz
qmk_firmware-f4ff225c004702b030f01ea0da98f9e966b7de80.zip
[Keyboard] keyboards/anavi: Add ANAVI Macro Pad 8 (#9164)
ANAVI Macro Pad 8 is an open source mini mechanical keyboard with 8 keys, backlit, addressable RGB WS2812B LED strip on the back and mini OLED display. Powered by ATmega 32U4 microcontroller and with microUSB connector. Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Joel Challis <git@zvecr.com> Signed-off-by: Leon Anavi <leon@anavi.org>
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