diff options
author | Raleigh Wayland <rtwayland@gmail.com> | 2020-10-15 12:19:51 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 19:19:51 +0100 |
commit | f90688e55060c3b4ebe797c42c483fd2d0412321 (patch) | |
tree | bd0ff68c441411b7e59dc8cdb615714634ec22dc | |
parent | 0f453bc5f7685671e79a465e0bbd6c8c67a93409 (diff) | |
download | qmk_firmware-f90688e55060c3b4ebe797c42c483fd2d0412321.tar.gz qmk_firmware-f90688e55060c3b4ebe797c42c483fd2d0412321.zip |
Adding Opus keyboard (#10628)
* Adding opus keyboard
* Preparing keyboard for PR
* Adding images to default keymap readme
* Changing VENDOR_ID
* Minor changes
* Changing PRODUCT_ID
* Removing comment
* Fixing tap dance issue
* #pragma once instead of #ifndef
* Resolving PR suggestions
* Removing ifndef
* Using lower resolution image
* Formatting comments
* Adjusting copyright year
Co-authored-by: Raleigh Wayland <raleigh.wayland@stormapp.com>
-rw-r--r-- | keyboards/opus/config.h | 45 | ||||
-rw-r--r-- | keyboards/opus/info.json | 59 | ||||
-rw-r--r-- | keyboards/opus/keymaps/default/keymap.c | 51 | ||||
-rw-r--r-- | keyboards/opus/keymaps/default/readme.md | 17 | ||||
-rw-r--r-- | keyboards/opus/keymaps/thefoxcodes/config.h | 21 | ||||
-rw-r--r-- | keyboards/opus/keymaps/thefoxcodes/keymap.c | 94 | ||||
-rw-r--r-- | keyboards/opus/keymaps/thefoxcodes/readme.md | 1 | ||||
-rw-r--r-- | keyboards/opus/keymaps/thefoxcodes/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/opus/opus.c | 17 | ||||
-rw-r--r-- | keyboards/opus/opus.h | 39 | ||||
-rw-r--r-- | keyboards/opus/readme.md | 15 | ||||
-rw-r--r-- | keyboards/opus/rules.mk | 23 |
12 files changed, 383 insertions, 0 deletions
diff --git a/keyboards/opus/config.h b/keyboards/opus/config.h new file mode 100644 index 000000000..52ed10bc5 --- /dev/null +++ b/keyboards/opus/config.h | |||
@@ -0,0 +1,45 @@ | |||
1 | /* Copyright 2020 rtwayland | ||
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 "config_common.h" | ||
20 | |||
21 | /* USB Device descriptor parameter */ | ||
22 | #define VENDOR_ID 0x434B | ||
23 | #define PRODUCT_ID 0x4F50 | ||
24 | #define DEVICE_VER 0x0001 | ||
25 | #define MANUFACTURER rtwayland | ||
26 | #define PRODUCT Opus | ||
27 | |||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 4 | ||
30 | #define MATRIX_COLS 12 | ||
31 | |||
32 | /* PCB pin-out */ | ||
33 | #define MATRIX_ROW_PINS {B1, B3, B2, B6} | ||
34 | #define MATRIX_COL_PINS {D1, D0, D4, C6, D7, E6, B4, B5, F4, F5, F6, F7} | ||
35 | #define UNUSED_PINS | ||
36 | |||
37 | #define DIODE_DIRECTION COL2ROW | ||
38 | |||
39 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
40 | #define DEBOUNCE 5 | ||
41 | |||
42 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
43 | #define LOCKING_SUPPORT_ENABLE | ||
44 | /* Locking resynchronize hack */ | ||
45 | #define LOCKING_RESYNC_ENABLE | ||
diff --git a/keyboards/opus/info.json b/keyboards/opus/info.json new file mode 100644 index 000000000..1b2da1136 --- /dev/null +++ b/keyboards/opus/info.json | |||
@@ -0,0 +1,59 @@ | |||
1 | { | ||
2 | "keyboard_name": "opus", | ||
3 | "maintainer": "rtwayland", | ||
4 | "layouts": { | ||
5 | "LAYOUT": { | ||
6 | "layout": [ | ||
7 | { "label": "Tab", "x": 0, "y": 0.4 }, | ||
8 | { "label": "Q", "x": 1, "y": 0.4 }, | ||
9 | { "label": "W", "x": 2, "y": 0.2 }, | ||
10 | { "label": "E", "x": 3, "y": 0 }, | ||
11 | { "label": "R", "x": 4, "y": 0.4 }, | ||
12 | { "label": "T", "x": 5, "y": 0.5 }, | ||
13 | |||
14 | { "label": "Y", "x": 10, "y": 0.5 }, | ||
15 | { "label": "U", "x": 11, "y": 0.4 }, | ||
16 | { "label": "I", "x": 12, "y": 0 }, | ||
17 | { "label": "O", "x": 13, "y": 0.2 }, | ||
18 | { "label": "P", "x": 14, "y": 0.4 }, | ||
19 | { "label": "Back Space", "x": 15, "y": 0.4 }, | ||
20 | |||
21 | { "label": "Ctrl / Esc", "x": 0, "y": 1.4 }, | ||
22 | { "label": "A", "x": 1, "y": 1.4 }, | ||
23 | { "label": "S", "x": 2, "y": 1.2 }, | ||
24 | { "label": "D", "x": 3, "y": 1 }, | ||
25 | { "label": "F", "x": 4, "y": 1.4 }, | ||
26 | { "label": "G", "x": 5, "y": 1.5 }, | ||
27 | |||
28 | { "label": "H", "x": 10, "y": 1.5 }, | ||
29 | { "label": "J", "x": 11, "y": 1.4 }, | ||
30 | { "label": "K", "x": 12, "y": 1 }, | ||
31 | { "label": "L", "x": 13, "y": 1.2 }, | ||
32 | { "label": ";", "x": 14, "y": 1.4 }, | ||
33 | { "label": "'", "x": 15, "y": 1.4 }, | ||
34 | |||
35 | { "label": "GUI", "x": 0, "y": 2.4 }, | ||
36 | { "label": "Z", "x": 1, "y": 2.4 }, | ||
37 | { "label": "X", "x": 2, "y": 2.2 }, | ||
38 | { "label": "C", "x": 3, "y": 2 }, | ||
39 | { "label": "V", "x": 4, "y": 2.4 }, | ||
40 | { "label": "B", "x": 5, "y": 2.5 }, | ||
41 | |||
42 | { "label": "N", "x": 10, "y": 2.5 }, | ||
43 | { "label": "M", "x": 11, "y": 2.4 }, | ||
44 | { "label": ",", "x": 12, "y": 2 }, | ||
45 | { "label": ".", "x": 13, "y": 2.2 }, | ||
46 | { "label": "/", "x": 14, "y": 2.4 }, | ||
47 | { "label": "Enter", "x": 15, "y": 2.4 }, | ||
48 | |||
49 | { "label": "Lower", "x": 4.8, "y": 3.7 }, | ||
50 | { "label": "Shift", "x": 5.8, "y": 3.5 }, | ||
51 | { "label": "Tab", "x": 6.8, "y": 3.6 }, | ||
52 | |||
53 | { "label": "Enter", "x": 8.2, "y": 3.6 }, | ||
54 | { "label": "Space", "x": 9.2, "y": 3.5 }, | ||
55 | { "label": "Raise", "x": 10.2, "y": 3.7 } | ||
56 | ] | ||
57 | } | ||
58 | } | ||
59 | } | ||
diff --git a/keyboards/opus/keymaps/default/keymap.c b/keyboards/opus/keymaps/default/keymap.c new file mode 100644 index 000000000..aaa1a899a --- /dev/null +++ b/keyboards/opus/keymaps/default/keymap.c | |||
@@ -0,0 +1,51 @@ | |||
1 | /* Copyright 2020 rtwayland | ||
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 QMK_KEYBOARD_H | ||
18 | |||
19 | enum layer_names { | ||
20 | _BASE, | ||
21 | _SYMBOL, | ||
22 | _NUM, | ||
23 | _NAV, | ||
24 | }; | ||
25 | |||
26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
27 | [_BASE] = LAYOUT( | ||
28 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
29 | LCTL_T(KC_ESC), KC_A, KC_S, KC_D, LT(2,KC_F), KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
30 | KC_LALT, LGUI_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, LGUI_T(KC_SLSH), KC_ENT, | ||
31 | MO(3), KC_LSFT, LALT_T(KC_TAB), LT(3,KC_ENT), LT(1,KC_SPC), KC_BSPC | ||
32 | ), | ||
33 | [_SYMBOL] = LAYOUT( | ||
34 | LCTL(KC_C), KC_TILD, KC_AT, KC_LCBR, KC_RCBR, KC_HASH, KC_ASTR, KC_CIRC, KC_AMPR, KC_PIPE, KC_BSLS, LCTL(KC_GRV), | ||
35 | KC_LCTL, KC_GRV, KC_MINS, KC_LPRN, KC_RPRN, KC_EXLM, KC_QUES, KC_DLR, KC_LT, KC_GT, KC_SLSH, KC_DQUO, | ||
36 | KC_LALT, KC_LGUI, KC_UNDS, KC_LBRC, KC_RBRC, KC_PLUS, KC_P0, KC_EQL, KC_PERC, KC_COLN, KC_NO, KC_NO, | ||
37 | KC_TRNS, KC_LSFT, KC_NO, KC_TRNS, KC_TRNS, KC_NO | ||
38 | ), | ||
39 | [_NUM] = LAYOUT( | ||
40 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_ASTR, KC_7, KC_8, KC_9, KC_SLSH, KC_EQL, | ||
41 | KC_LCTL, KC_NO, KC_NO, KC_NO, KC_TRNS, KC_NO, KC_PLUS, KC_4, KC_5, KC_6, KC_MINS, KC_PERC, | ||
42 | KC_LALT, KC_LGUI, KC_NO, KC_NO, KC_NO, KC_NO, KC_0, KC_1, KC_2, KC_3, KC_DOT, KC_PENT, | ||
43 | KC_NO, KC_NO, KC_NO, KC_NO, KC_SPC, KC_BSPC | ||
44 | ), | ||
45 | [_NAV] = LAYOUT( | ||
46 | KC_NO, KC_NO, LALT(KC_RGHT), SGUI(KC_LBRC), SGUI(KC_RBRC), KC_NO, KC_HOME, KC_PGDN, KC_PGUP, KC_NO, KC_NO, KC_NO, | ||
47 | KC_NO, KC_LCTL, KC_LALT, KC_LSFT, KC_LGUI, KC_NO, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_NO, KC_NO, | ||
48 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, LALT(KC_LEFT), KC_END, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
49 | KC_TRNS, KC_NO, KC_NO, KC_NO, KC_SPC, KC_BSPC | ||
50 | ) | ||
51 | }; | ||
diff --git a/keyboards/opus/keymaps/default/readme.md b/keyboards/opus/keymaps/default/readme.md new file mode 100644 index 000000000..ba3f26eda --- /dev/null +++ b/keyboards/opus/keymaps/default/readme.md | |||
@@ -0,0 +1,17 @@ | |||
1 | # The default keymap for Opus | ||
2 | |||
3 | ## Base Layer | ||
4 | |||
5 |  | ||
6 | |||
7 | ## Symbol Layer | ||
8 | |||
9 |  | ||
10 | |||
11 | ## Num Layer | ||
12 | |||
13 |  | ||
14 | |||
15 | ## Nav Layer | ||
16 | |||
17 |  | ||
diff --git a/keyboards/opus/keymaps/thefoxcodes/config.h b/keyboards/opus/keymaps/thefoxcodes/config.h new file mode 100644 index 000000000..824ec5bd1 --- /dev/null +++ b/keyboards/opus/keymaps/thefoxcodes/config.h | |||
@@ -0,0 +1,21 @@ | |||
1 | /* Copyright 2020 rtwayland | ||
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 | // place overrides here | ||
20 | #define USB_MAX_POWER_CONSUMPTION 100 | ||
21 | #define TAPPING_TERM 200 \ No newline at end of file | ||
diff --git a/keyboards/opus/keymaps/thefoxcodes/keymap.c b/keyboards/opus/keymaps/thefoxcodes/keymap.c new file mode 100644 index 000000000..e0adb2af3 --- /dev/null +++ b/keyboards/opus/keymaps/thefoxcodes/keymap.c | |||
@@ -0,0 +1,94 @@ | |||
1 | /* Copyright 2020 rtwayland | ||
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 QMK_KEYBOARD_H | ||
18 | |||
19 | enum layer_names { | ||
20 | _BASE, | ||
21 | _SYMBOL, | ||
22 | _NUM, | ||
23 | _NAV, | ||
24 | _MEDIA, | ||
25 | _WORD, | ||
26 | _FKEYS, | ||
27 | _NUMPAD, | ||
28 | _MOUSE | ||
29 | }; | ||
30 | |||
31 | enum { | ||
32 | TD_PLAY_DO_NOT_DISTURB | ||
33 | }; | ||
34 | |||
35 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
36 | [_BASE] = LAYOUT( | ||
37 | LT(4, KC_TAB), KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, TD(TD_PLAY_DO_NOT_DISTURB), | ||
38 | LCTL_T(KC_ESC), KC_A, KC_S, KC_D, LT(2, KC_F), KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, LT(4, KC_QUOT), | ||
39 | MO(5), LGUI_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, LGUI_T(KC_SLSH), MO(5), | ||
40 | MO(3), KC_LSFT, LALT_T(KC_TAB), LT(3, KC_ENT), LT(1, KC_SPC), KC_BSPC | ||
41 | ), | ||
42 | [_SYMBOL] = LAYOUT( | ||
43 | LCTL(KC_C), KC_TILD, KC_AT, KC_LCBR, KC_RCBR, KC_HASH, KC_ASTR, KC_CIRC, KC_AMPR, KC_PIPE, KC_BSLS, LCTL(KC_GRV), | ||
44 | KC_LCTL, KC_GRV, KC_MINS, KC_LPRN, KC_RPRN, KC_EXLM, KC_QUES, KC_DLR, KC_LT, KC_GT, KC_SLSH, KC_DQUO, | ||
45 | KC_LALT, KC_LGUI, KC_UNDS, KC_LBRC, KC_RBRC, KC_PLUS, KC_P0, KC_EQL, KC_PERC, KC_COLN, KC_NO, KC_NO, | ||
46 | KC_NO, KC_LSFT, LALT_T(KC_TAB), KC_NO, KC_TRNS, KC_NO | ||
47 | ), | ||
48 | [_NUM] = LAYOUT( | ||
49 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_ASTR, KC_7, KC_8, KC_9, KC_SLSH, KC_EQL, | ||
50 | KC_LCTL, KC_NO, MO(7), MO(6), KC_TRNS, KC_NO, KC_PLUS, KC_4, KC_5, KC_6, KC_MINS, KC_PERC, | ||
51 | KC_LALT, KC_LGUI, KC_NO, KC_NO, KC_NO, KC_NO, KC_0, KC_1, KC_2, KC_3, KC_DOT, KC_PENT, | ||
52 | KC_NO, KC_LSFT, LALT_T(KC_TAB), KC_NO, KC_SPC, KC_BSPC | ||
53 | ), | ||
54 | [_NAV] = LAYOUT( | ||
55 | KC_NO, KC_NO, LALT(KC_RGHT), SGUI(KC_LBRC), SGUI(KC_RBRC), KC_NO, KC_HOME, KC_PGDN, KC_PGUP, KC_NO, KC_NO, KC_NO, | ||
56 | KC_NO, KC_LCTL, KC_LALT, KC_LSFT, KC_LGUI, KC_NO, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_NO, KC_NO, | ||
57 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, LALT(KC_LEFT), KC_END, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
58 | KC_TRNS, KC_NO, KC_NO, KC_NO, KC_SPC, KC_BSPC | ||
59 | ), | ||
60 | [_MEDIA] = LAYOUT( | ||
61 | KC_TRNS, SGUI(KC_5), SGUI(KC_3), SGUI(KC_4), MEH(KC_4), KC_VOLU, LCA(KC_U), LCAG(KC_LEFT), LCAG(KC_RGHT), LCA(KC_I), LCA(KC_EQL), LALT(LGUI(KC_POWER)), | ||
62 | KC_CAPS, KC_F11, KC_MPRV, KC_MNXT, KC_MPLY, KC_VOLD, LCA(KC_LEFT), LCA(KC_DOWN), LCA(KC_UP), LCA(KC_RIGHT), LCA(KC_MINS), KC_TRNS, | ||
63 | KC_BRID, KC_BRIU, LGUI(KC_MINS), LGUI(KC_PLUS), LGUI(KC_GRV), KC_MUTE, LCA(KC_J), LCA(KC_ENT), LCA(KC_C), LCA(KC_K), MEH(KC_UP), RESET, | ||
64 | LCTL(LSFT(KC_TAB)), LCTL(KC_TAB), KC_NO, KC_NO, MEH(KC_RGHT), MEH(KC_LEFT) | ||
65 | ), | ||
66 | [_WORD] = LAYOUT( | ||
67 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
68 | KC_NO, KC_NO, LALT(LSFT(KC_MINS)), KC_NO, LALT(LGUI(KC_F)), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
69 | KC_TRNS, KC_NO, LALT(KC_MINS), KC_NO, SGUI(LALT(KC_V)), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, | ||
70 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_DEL | ||
71 | ), | ||
72 | [_FKEYS] = LAYOUT( | ||
73 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_F12, KC_F7, KC_F8, KC_F9, KC_F17, KC_F20, | ||
74 | KC_NO, KC_NO, KC_NO, KC_TRNS, KC_NO, KC_NO, KC_F11, KC_F4, KC_F5, KC_F6, KC_F16, KC_F19, | ||
75 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_F10, KC_F1, KC_F2, KC_F3, KC_F13, KC_F18, | ||
76 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO | ||
77 | ), | ||
78 | [_NUMPAD] = LAYOUT( | ||
79 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_PAST, KC_P7, KC_P8, KC_P9, KC_PSLS, KC_PEQL, | ||
80 | KC_LCTL, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_PPLS, KC_P4, KC_P5, KC_P6, KC_PMNS, KC_PERC, | ||
81 | KC_LALT, KC_LGUI, KC_NO, KC_NO, KC_NO, KC_NO, KC_P0, KC_P1, KC_P2, KC_P3, KC_PDOT, KC_PENT, | ||
82 | KC_NO, KC_TRNS, KC_NO, KC_NO, KC_LPRN, KC_RPRN | ||
83 | ), | ||
84 | [_MOUSE] = LAYOUT( | ||
85 | KC_NO, KC_NO, KC_NO, SGUI(KC_LBRC), SGUI(KC_RBRC), KC_NO, KC_HOME, KC_WH_U, KC_WH_D, KC_NO, KC_NO, KC_NO, | ||
86 | KC_NO, KC_NO, KC_ACL2, KC_WWW_BACK, KC_ACL0, KC_WWW_FORWARD, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_NO, KC_NO, | ||
87 | KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_END, KC_WH_R, KC_WH_L, KC_NO, KC_NO, KC_NO, | ||
88 | KC_NO, KC_NO, KC_NO, KC_NO, KC_BTN1, KC_BTN2 | ||
89 | ), | ||
90 | }; | ||
91 | |||
92 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
93 | [TD_PLAY_DO_NOT_DISTURB] = ACTION_TAP_DANCE_DOUBLE(KC_MPLY, KC_F6) | ||
94 | }; \ No newline at end of file | ||
diff --git a/keyboards/opus/keymaps/thefoxcodes/readme.md b/keyboards/opus/keymaps/thefoxcodes/readme.md new file mode 100644 index 000000000..c1d2a0b9e --- /dev/null +++ b/keyboards/opus/keymaps/thefoxcodes/readme.md | |||
@@ -0,0 +1 @@ | |||
# thefoxcodes keymap | |||
diff --git a/keyboards/opus/keymaps/thefoxcodes/rules.mk b/keyboards/opus/keymaps/thefoxcodes/rules.mk new file mode 100644 index 000000000..1ba2fa8fb --- /dev/null +++ b/keyboards/opus/keymaps/thefoxcodes/rules.mk | |||
@@ -0,0 +1 @@ | |||
TAP_DANCE_ENABLE = yes \ No newline at end of file | |||
diff --git a/keyboards/opus/opus.c b/keyboards/opus/opus.c new file mode 100644 index 000000000..5a188cf8a --- /dev/null +++ b/keyboards/opus/opus.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2020 rtwayland | ||
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 "opus.h" | ||
diff --git a/keyboards/opus/opus.h b/keyboards/opus/opus.h new file mode 100644 index 000000000..ec82c5bc9 --- /dev/null +++ b/keyboards/opus/opus.h | |||
@@ -0,0 +1,39 @@ | |||
1 | /* Copyright 2020 rtwayland | ||
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 | #pragma once | ||
17 | |||
18 | #include "quantum.h" | ||
19 | |||
20 | /* This a shortcut to help you visually see your layout. | ||
21 | * | ||
22 | * The first section contains all of the arguments representing the physical | ||
23 | * layout of the board and position of the keys. | ||
24 | * | ||
25 | * The second converts the arguments into a two-dimensional array which | ||
26 | * represents the switch matrix. | ||
27 | */ | ||
28 | #define LAYOUT( \ | ||
29 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \ | ||
30 | k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \ | ||
31 | k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \ | ||
32 | k33, k34, k35, k36, k37, k38 \ | ||
33 | ) \ | ||
34 | { \ | ||
35 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \ | ||
36 | { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b }, \ | ||
37 | { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \ | ||
38 | { KC_NO, KC_NO, KC_NO, k33, k34, k35, k36, k37, k38, KC_NO, KC_NO, KC_NO } \ | ||
39 | } | ||
diff --git a/keyboards/opus/readme.md b/keyboards/opus/readme.md new file mode 100644 index 000000000..aebe3162d --- /dev/null +++ b/keyboards/opus/readme.md | |||
@@ -0,0 +1,15 @@ | |||
1 | # Opus | ||
2 | |||
3 |  | ||
4 | |||
5 | This is a 40%, non-split, ergonomic, hot-swap keyboard. | ||
6 | The columns are angled to follow the natural angle of the hand. | ||
7 | |||
8 | * Keyboard Maintainer: [rtwayland](https://github.com/rtwayland) | ||
9 | * Hardware Supported: Pro-micro. Elite-C. | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make opus:default | ||
14 | |||
15 | See 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/opus/rules.mk b/keyboards/opus/rules.mk new file mode 100644 index 000000000..ad6298c9f --- /dev/null +++ b/keyboards/opus/rules.mk | |||
@@ -0,0 +1,23 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = caterina | ||
6 | |||
7 | |||
8 | # Build Options | ||
9 | # change yes to no to disable | ||
10 | # | ||
11 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
12 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
13 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
14 | CONSOLE_ENABLE = no # Console for debug | ||
15 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
16 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
17 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
18 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
19 | NKRO_ENABLE = no # USB Nkey Rollover | ||
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
23 | AUDIO_ENABLE = no # Audio output | ||