aboutsummaryrefslogtreecommitdiff
path: root/keyboards/owl8
diff options
context:
space:
mode:
authoryfuku <30647434+yfuku@users.noreply.github.com>2021-08-07 09:01:52 +0900
committerGitHub <noreply@github.com>2021-08-06 17:01:52 -0700
commit6721825df5ddda0631faaf52292ce78db92f2c7f (patch)
tree6da007ff82c9d509ec7bcea5dd4253567932d639 /keyboards/owl8
parentbdf86c4cbdb22fe800ea0beb4c680b8be5dcb5a4 (diff)
downloadqmk_firmware-6721825df5ddda0631faaf52292ce78db92f2c7f.tar.gz
qmk_firmware-6721825df5ddda0631faaf52292ce78db92f2c7f.zip
[Keyboard] Add owl8 keyboard (#13380)
* add owl8 * use DIRECT_PINS * fix encoder * Changed to use action_exec.
Diffstat (limited to 'keyboards/owl8')
-rw-r--r--keyboards/owl8/config.h159
-rw-r--r--keyboards/owl8/keymaps/default/keymap.c68
-rw-r--r--keyboards/owl8/keymaps/default/readme.md1
-rw-r--r--keyboards/owl8/keymaps/via/keymap.c123
-rw-r--r--keyboards/owl8/keymaps/via/readme.md1
-rw-r--r--keyboards/owl8/keymaps/via/rules.mk1
-rw-r--r--keyboards/owl8/owl8.c17
-rw-r--r--keyboards/owl8/owl8.h41
-rw-r--r--keyboards/owl8/readme.md19
-rw-r--r--keyboards/owl8/rules.mk24
10 files changed, 454 insertions, 0 deletions
diff --git a/keyboards/owl8/config.h b/keyboards/owl8/config.h
new file mode 100644
index 000000000..7bbaff398
--- /dev/null
+++ b/keyboards/owl8/config.h
@@ -0,0 +1,159 @@
1/*
2Copyright 2021 yfuku
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 0x5946 // YF
24#define PRODUCT_ID 0x0008
25#define DEVICE_VER 0x0001
26#define MANUFACTURER yfuku
27#define PRODUCT owl8
28
29/* key matrix size */
30#define MATRIX_ROWS 4
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 DIRECT_PINS { \
44 { F4, F7, B3, B6 }, \
45 { F5, F6, B1, B2 }, \
46 { D4, C6, D7, E6 }, \
47 { NO_PIN, NO_PIN, NO_PIN, NO_PIN } \
48}
49#define UNUSED_PINS
50
51/* COL2ROW, ROW2COL */
52#define DIODE_DIRECTION COL2ROW
53
54/*
55 * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
56 */
57#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
58
59//#define LED_NUM_LOCK_PIN B0
60//#define LED_CAPS_LOCK_PIN B1
61//#define LED_SCROLL_LOCK_PIN B2
62//#define LED_COMPOSE_PIN B3
63//#define LED_KANA_PIN B4
64
65//#define BACKLIGHT_PIN B7
66//#define BACKLIGHT_LEVELS 3
67//#define BACKLIGHT_BREATHING
68
69//#define RGB_DI_PIN E2
70//#ifdef RGB_DI_PIN
71//# define RGBLED_NUM 16
72//# define RGBLIGHT_HUE_STEP 8
73//# define RGBLIGHT_SAT_STEP 8
74//# define RGBLIGHT_VAL_STEP 8
75//# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
76//# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
77/*== all animations enable ==*/
78//# define RGBLIGHT_ANIMATIONS
79/*== or choose animations ==*/
80//# define RGBLIGHT_EFFECT_BREATHING
81//# define RGBLIGHT_EFFECT_RAINBOW_MOOD
82//# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
83//# define RGBLIGHT_EFFECT_SNAKE
84//# define RGBLIGHT_EFFECT_KNIGHT
85//# define RGBLIGHT_EFFECT_CHRISTMAS
86//# define RGBLIGHT_EFFECT_STATIC_GRADIENT
87//# define RGBLIGHT_EFFECT_RGB_TEST
88//# define RGBLIGHT_EFFECT_ALTERNATING
89/*== customize breathing effect ==*/
90/*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
91//# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
92/*==== use exp() and sin() ====*/
93//# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
94//# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
95//#endif
96
97/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
98#define DEBOUNCE 5
99
100/* define if matrix has ghost (lacks anti-ghosting diodes) */
101//#define MATRIX_HAS_GHOST
102
103/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
104#define LOCKING_SUPPORT_ENABLE
105/* Locking resynchronize hack */
106#define LOCKING_RESYNC_ENABLE
107
108/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
109 * This is useful for the Windows task manager shortcut (ctrl+shift+esc).
110 */
111//#define GRAVE_ESC_CTRL_OVERRIDE
112
113/*
114 * Force NKRO
115 *
116 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
117 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
118 * makefile for this to work.)
119 *
120 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
121 * until the next keyboard reset.
122 *
123 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
124 * fully operational during normal computer usage.
125 *
126 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
127 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
128 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
129 * power-up.
130 *
131 */
132//#define FORCE_NKRO
133
134/*
135 * Feature disable options
136 * These options are also useful to firmware size reduction.
137 */
138
139/* disable debug print */
140//#define NO_DEBUG
141
142/* disable print */
143//#define NO_PRINT
144
145/* disable action features */
146//#define NO_ACTION_LAYER
147//#define NO_ACTION_TAPPING
148//#define NO_ACTION_ONESHOT
149
150/* disable these deprecated features by default */
151#define NO_ACTION_MACRO
152#define NO_ACTION_FUNCTION
153
154/* Bootmagic Lite key configuration */
155//#define BOOTMAGIC_LITE_ROW 0
156//#define BOOTMAGIC_LITE_COLUMN 0
157
158#define ENCODERS_PAD_A { D4, D7 }
159#define ENCODERS_PAD_B { C6, E6 }
diff --git a/keyboards/owl8/keymaps/default/keymap.c b/keyboards/owl8/keymaps/default/keymap.c
new file mode 100644
index 000000000..e84026363
--- /dev/null
+++ b/keyboards/owl8/keymaps/default/keymap.c
@@ -0,0 +1,68 @@
1/* Copyright 2021 yfuku
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include QMK_KEYBOARD_H
17
18// Defines names for use in layer keycodes and the keymap
19enum layer_names {
20 _BASE,
21 _FN1,
22 _FN2,
23 _FN3
24};
25
26const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
27 [_BASE] = LAYOUT(
28 KC_NO, KC_NO, KC_NO, KC_NO, // for encoders
29 KC_NO, KC_NO, KC_NO, KC_NO, // for ext keys
30 MO(1), KC_BSPC, KC_SPC, KC_ENT,
31 KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
32 ),
33 [_FN1] = LAYOUT(
34 KC_NO, KC_NO, KC_NO, KC_NO,
35 KC_NO, KC_NO, KC_NO, KC_NO,
36 KC_1, KC_2, KC_3, KC_4,
37 KC_5, KC_6, KC_7, KC_8
38 ),
39 [_FN2] = LAYOUT(
40 KC_NO, KC_NO, KC_NO, KC_NO,
41 KC_NO, KC_NO, KC_NO, KC_NO,
42 KC_1, KC_2, KC_3, KC_4,
43 KC_5, KC_6, KC_7, KC_8
44 ),
45 [_FN3] = LAYOUT(
46 KC_NO, KC_NO, KC_NO, KC_NO,
47 KC_NO, KC_NO, KC_NO, KC_NO,
48 KC_1, KC_2, KC_3, KC_4,
49 KC_5, KC_6, KC_7, KC_8
50 )
51};
52
53bool encoder_update_user(uint8_t index, bool clockwise) {
54 if (index == 0) { /* First encoder */
55 if (clockwise) {
56 tap_code(KC_PGDN);
57 } else {
58 tap_code(KC_PGUP);
59 }
60 } else if (index == 1) { /* Second encoder */
61 if (clockwise) {
62 tap_code(KC_DOWN);
63 } else {
64 tap_code(KC_UP);
65 }
66 }
67 return true;
68}
diff --git a/keyboards/owl8/keymaps/default/readme.md b/keyboards/owl8/keymaps/default/readme.md
new file mode 100644
index 000000000..e0129daa2
--- /dev/null
+++ b/keyboards/owl8/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for owl8
diff --git a/keyboards/owl8/keymaps/via/keymap.c b/keyboards/owl8/keymaps/via/keymap.c
new file mode 100644
index 000000000..dc981f475
--- /dev/null
+++ b/keyboards/owl8/keymaps/via/keymap.c
@@ -0,0 +1,123 @@
1/* Copyright 2021 yfuku
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include QMK_KEYBOARD_H
17
18// Defines names for use in layer keycodes and the keymap
19enum layer_names {
20 _BASE,
21 _FN1,
22 _FN2,
23 _FN3
24};
25
26const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
27 [_BASE] = LAYOUT(
28 KC_NO, KC_NO, KC_NO, KC_NO, // for encoders
29 KC_NO, KC_NO, KC_NO, KC_NO, // for ext keys
30 MO(1), KC_BSPC, KC_SPC, KC_ENT,
31 KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
32 ),
33 [_FN1] = LAYOUT(
34 KC_NO, KC_NO, KC_NO, KC_NO,
35 KC_NO, KC_NO, KC_NO, KC_NO,
36 KC_1, KC_2, KC_3, KC_4,
37 KC_5, KC_6, KC_7, KC_8
38 ),
39 [_FN2] = LAYOUT(
40 KC_NO, KC_NO, KC_NO, KC_NO,
41 KC_NO, KC_NO, KC_NO, KC_NO,
42 KC_1, KC_2, KC_3, KC_4,
43 KC_5, KC_6, KC_7, KC_8
44 ),
45 [_FN3] = LAYOUT(
46 KC_NO, KC_NO, KC_NO, KC_NO,
47 KC_NO, KC_NO, KC_NO, KC_NO,
48 KC_1, KC_2, KC_3, KC_4,
49 KC_5, KC_6, KC_7, KC_8
50 )
51};
52
53keyevent_t encoder1_ccw = {
54 .key = (keypos_t){.row = 3, .col = 1},
55 .pressed = false
56};
57
58keyevent_t encoder1_cw = {
59 .key = (keypos_t){.row = 3, .col = 0},
60 .pressed = false
61};
62
63keyevent_t encoder2_ccw = {
64 .key = (keypos_t){.row = 3, .col = 3},
65 .pressed = false
66};
67
68keyevent_t encoder2_cw = {
69 .key = (keypos_t){.row = 3, .col = 2},
70 .pressed = false
71};
72
73void matrix_scan_user(void) {
74 if (IS_PRESSED(encoder1_ccw)) {
75 encoder1_ccw.pressed = false;
76 encoder1_ccw.time = (timer_read() | 1);
77 action_exec(encoder1_ccw);
78 }
79
80 if (IS_PRESSED(encoder1_cw)) {
81 encoder1_cw.pressed = false;
82 encoder1_cw.time = (timer_read() | 1);
83 action_exec(encoder1_cw);
84 }
85
86 if (IS_PRESSED(encoder2_ccw)) {
87 encoder2_ccw.pressed = false;
88 encoder2_ccw.time = (timer_read() | 1);
89 action_exec(encoder2_ccw);
90 }
91
92 if (IS_PRESSED(encoder2_cw)) {
93 encoder2_cw.pressed = false;
94 encoder2_cw.time = (timer_read() | 1);
95 action_exec(encoder2_cw);
96 }
97}
98
99bool encoder_update_user(uint8_t index, bool clockwise) {
100 if (index == 0) { /* First encoder */
101 if (clockwise) {
102 encoder1_cw.pressed = true;
103 encoder1_cw.time = (timer_read() | 1);
104 action_exec(encoder1_cw);
105 } else {
106 encoder1_ccw.pressed = true;
107 encoder1_ccw.time = (timer_read() | 1);
108 action_exec(encoder1_ccw);
109 }
110 } else if (index == 1) {
111 if (clockwise) {
112 encoder2_cw.pressed = true;
113 encoder2_cw.time = (timer_read() | 1);
114 action_exec(encoder2_cw);
115 } else {
116 encoder2_ccw.pressed = true;
117 encoder2_ccw.time = (timer_read() | 1);
118 action_exec(encoder2_ccw);
119 }
120 }
121
122 return true;
123}
diff --git a/keyboards/owl8/keymaps/via/readme.md b/keyboards/owl8/keymaps/via/readme.md
new file mode 100644
index 000000000..c4fa65987
--- /dev/null
+++ b/keyboards/owl8/keymaps/via/readme.md
@@ -0,0 +1 @@
# The via keymap for owl8
diff --git a/keyboards/owl8/keymaps/via/rules.mk b/keyboards/owl8/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/owl8/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes
diff --git a/keyboards/owl8/owl8.c b/keyboards/owl8/owl8.c
new file mode 100644
index 000000000..a31289891
--- /dev/null
+++ b/keyboards/owl8/owl8.c
@@ -0,0 +1,17 @@
1/* Copyright 2021 yfuku
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include "owl8.h"
diff --git a/keyboards/owl8/owl8.h b/keyboards/owl8/owl8.h
new file mode 100644
index 000000000..656b3f17c
--- /dev/null
+++ b/keyboards/owl8/owl8.h
@@ -0,0 +1,41 @@
1/* Copyright 2021 yfuku
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#include "quantum.h"
20
21/* This is a shortcut to help you visually see your layout.
22 *
23 * The first section contains all of the arguments representing the physical
24 * layout of the board and position of the keys.
25 *
26 * The second converts the arguments into a two-dimensional array which
27 * represents the switch matrix.
28 */
29
30#define LAYOUT( \
31 k30, k31, k32, k33, \
32 k20, k21, k22, k23, \
33 k00, k01, k02, k03, \
34 k10, k11, k12, k13 \
35) \
36{ \
37 {k00, k01, k02, k03 }, \
38 {k10, k11, k12, k13 }, \
39 {k20, k21, k22, k23 }, \
40 {k30, k31, k32, k33 } \
41}
diff --git a/keyboards/owl8/readme.md b/keyboards/owl8/readme.md
new file mode 100644
index 000000000..b40a5f35c
--- /dev/null
+++ b/keyboards/owl8/readme.md
@@ -0,0 +1,19 @@
1# owl8
2
3![owl8](https://raw.githubusercontent.com/yfuku/owl8/master/images/owl8.jpg)
4
5macropad
6
7* Keyboard Maintainer: [yfuku](https://github.com/yfuku)
8* Hardware Supported: owl8 PCB, Pro Micro
9* Hardware Availability: https://yfuku.booth.pm/
10
11Make example for this keyboard (after setting up your build environment):
12
13 make owl8:default
14
15Flashing example for this keyboard:
16
17 make owl8:default:flash
18
19See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
diff --git a/keyboards/owl8/rules.mk b/keyboards/owl8/rules.mk
new file mode 100644
index 000000000..647c62c45
--- /dev/null
+++ b/keyboards/owl8/rules.mk
@@ -0,0 +1,24 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = yes # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
17# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
18NKRO_ENABLE = no # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output
23
24ENCODER_ENABLE = yes