diff options
| author | Peter Park <peterchpark@gmail.com> | 2021-05-18 10:52:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 13:52:10 -0400 |
| commit | 1c81e69503a0c69b46ed7f4f94b040b67489bbf4 (patch) | |
| tree | d65a9b8816ef062f33dffec6cae6bfda22de59f7 /keyboards/the_uni | |
| parent | d86a97a08902c8103df6450696d497fb15cba0cb (diff) | |
| download | qmk_firmware-1c81e69503a0c69b46ed7f4f94b040b67489bbf4.tar.gz qmk_firmware-1c81e69503a0c69b46ed7f4f94b040b67489bbf4.zip | |
The Uni keyboard. Add keyboard (#12566)
* first commit
* Apply suggestions from code review
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Apply suggestions from code review by ridingqwerty
Co-authored-by: ridingqwerty <george.g.koenig@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: ridingqwerty <george.g.koenig@gmail.com>
Diffstat (limited to 'keyboards/the_uni')
| -rw-r--r-- | keyboards/the_uni/config.h | 52 | ||||
| -rw-r--r-- | keyboards/the_uni/info.json | 41 | ||||
| -rw-r--r-- | keyboards/the_uni/keymaps/default/keymap.c | 77 | ||||
| -rw-r--r-- | keyboards/the_uni/keymaps/qwerty/keymap.c | 77 | ||||
| -rw-r--r-- | keyboards/the_uni/readme.md | 19 | ||||
| -rw-r--r-- | keyboards/the_uni/rules.mk | 21 | ||||
| -rw-r--r-- | keyboards/the_uni/the_uni.c | 18 | ||||
| -rw-r--r-- | keyboards/the_uni/the_uni.h | 30 |
8 files changed, 335 insertions, 0 deletions
diff --git a/keyboards/the_uni/config.h b/keyboards/the_uni/config.h new file mode 100644 index 000000000..ff965d774 --- /dev/null +++ b/keyboards/the_uni/config.h | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 Peter C. Park <peter@stenokeyboards.com> | ||
| 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 0x9000 | ||
| 24 | #define PRODUCT_ID 0x0001 | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER stenokeyboards | ||
| 27 | #define PRODUCT The Uni | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | #define MATRIX_ROWS 3 | ||
| 31 | #define MATRIX_COLS 11 | ||
| 32 | |||
| 33 | /* key matrix pins */ | ||
| 34 | #define MATRIX_ROW_PINS { F4, B2, B6 } | ||
| 35 | #define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B5, B4, E6, D7, C6, D4 } | ||
| 36 | #define UNUSED_PINS | ||
| 37 | |||
| 38 | /* COL2ROW or ROW2COL */ | ||
| 39 | #define DIODE_DIRECTION COL2ROW | ||
| 40 | |||
| 41 | /* Set 0 if debouncing isn't needed */ | ||
| 42 | #define DEBOUNCE 5 | ||
| 43 | |||
| 44 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 45 | #define LOCKING_SUPPORT_ENABLE | ||
| 46 | |||
| 47 | /* Locking resynchronize hack */ | ||
| 48 | #define LOCKING_RESYNC_ENABLE | ||
| 49 | |||
| 50 | |||
| 51 | /*force the nkro if it does not work*/ | ||
| 52 | #define FORCE_NKRO | ||
diff --git a/keyboards/the_uni/info.json b/keyboards/the_uni/info.json new file mode 100644 index 000000000..86e2d5cdb --- /dev/null +++ b/keyboards/the_uni/info.json | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "The Uni", | ||
| 3 | "url": "https://www.stenokeyboards.com", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 13, | ||
| 6 | "height": 4, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT": { | ||
| 9 | "layout": [ | ||
| 10 | { "x": 0, "y": 0 }, | ||
| 11 | { "x": 1, "y": 0 }, | ||
| 12 | { "x": 2, "y": 0 }, | ||
| 13 | { "x": 3, "y": 0 }, | ||
| 14 | { "x": 4, "y": 0 }, | ||
| 15 | { "x": 7, "y": 0 }, | ||
| 16 | { "x": 8, "y": 0 }, | ||
| 17 | { "x": 9, "y": 0 }, | ||
| 18 | { "x": 10, "y": 0 }, | ||
| 19 | { "x": 11, "y": 0 }, | ||
| 20 | { "x": 12, "y": 0 }, | ||
| 21 | { "x": 0, "y": 1 }, | ||
| 22 | { "x": 1, "y": 1 }, | ||
| 23 | { "x": 2, "y": 1 }, | ||
| 24 | { "x": 3, "y": 1 }, | ||
| 25 | { "x": 4, "y": 1 }, | ||
| 26 | { "x": 7, "y": 1 }, | ||
| 27 | { "x": 8, "y": 1 }, | ||
| 28 | { "x": 9, "y": 1 }, | ||
| 29 | { "x": 10, "y": 1 }, | ||
| 30 | { "x": 11, "y": 1 }, | ||
| 31 | { "x": 12, "y": 1 }, | ||
| 32 | { "x": 2, "y": 3 }, | ||
| 33 | { "x": 3, "y": 3 }, | ||
| 34 | { "x": 4, "y": 3 }, | ||
| 35 | { "x": 7, "y": 3 }, | ||
| 36 | { "x": 8, "y": 3 }, | ||
| 37 | { "x": 9, "y": 3 } | ||
| 38 | ] | ||
| 39 | } | ||
| 40 | } | ||
| 41 | } | ||
diff --git a/keyboards/the_uni/keymaps/default/keymap.c b/keyboards/the_uni/keymaps/default/keymap.c new file mode 100644 index 000000000..01674d948 --- /dev/null +++ b/keyboards/the_uni/keymaps/default/keymap.c | |||
| @@ -0,0 +1,77 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 Peter C. Park <peter@stenokeyboards.com> | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 19 | #include "keymap_steno.h" | ||
| 20 | |||
| 21 | enum uni_layers { | ||
| 22 | /* | ||
| 23 | _QWERTY, | ||
| 24 | _CHOOSE, | ||
| 25 | */ | ||
| 26 | _PLOVER, | ||
| 27 | }; | ||
| 28 | |||
| 29 | /* | ||
| 30 | enum uni_keycodes { | ||
| 31 | PLOVER, | ||
| 32 | QWERTY | ||
| 33 | }; | ||
| 34 | */ | ||
| 35 | |||
| 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 37 | /* | ||
| 38 | [_QWERTY] = LAYOUT( | ||
| 39 | KC_Q, KC_W, KC_E, KC_R, LT(_CHOOSE, KC_T), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, | ||
| 40 | KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 41 | KC_1, KC_C, KC_V, KC_N, KC_M, KC_2), | ||
| 42 | |||
| 43 | [_CHOOSE] = LAYOUT( | ||
| 44 | _______, _______, _______, _______, _______, PLOVER, _______, _______, _______, _______, _______, | ||
| 45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 46 | _______, _______, _______, _______, _______, _______), | ||
| 47 | */ | ||
| 48 | [_PLOVER] = LAYOUT( | ||
| 49 | STN_S1, STN_TL, STN_PL, STN_HL, STN_ST1, STN_ST3, STN_FR, STN_PR, STN_LR, STN_TR, STN_DR , | ||
| 50 | STN_S2, STN_KL, STN_WL, STN_RL, STN_ST2, STN_ST4, STN_RR, STN_BR, STN_GR, STN_SR, STN_ZR , | ||
| 51 | STN_N1, STN_A, STN_O, STN_E, STN_U, STN_N2), | ||
| 52 | |||
| 53 | }; | ||
| 54 | |||
| 55 | /* | ||
| 56 | switch (keycode) { | ||
| 57 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 58 | case PLOVER: | ||
| 59 | if (!record->event.pressed) { | ||
| 60 | layer_on(_PLOVER); | ||
| 61 | } | ||
| 62 | return false; | ||
| 63 | break; | ||
| 64 | case QWERTY: | ||
| 65 | if (!record->event.pressed) { | ||
| 66 | layer_on(_QWERTY); | ||
| 67 | } | ||
| 68 | return false; | ||
| 69 | break; | ||
| 70 | } | ||
| 71 | return true; | ||
| 72 | } | ||
| 73 | */ | ||
| 74 | |||
| 75 | void matrix_init_user() { | ||
| 76 | steno_set_mode(STENO_MODE_GEMINI); // or STENO_MODE_BOLT | ||
| 77 | } | ||
diff --git a/keyboards/the_uni/keymaps/qwerty/keymap.c b/keyboards/the_uni/keymaps/qwerty/keymap.c new file mode 100644 index 000000000..3eaac57f3 --- /dev/null +++ b/keyboards/the_uni/keymaps/qwerty/keymap.c | |||
| @@ -0,0 +1,77 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 Peter C. Park <peter@stenokeyboards.com> | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 19 | //#include "keymap_steno.h" | ||
| 20 | |||
| 21 | enum uni_layers { | ||
| 22 | _QWERTY, | ||
| 23 | /* | ||
| 24 | _CHOOSE, | ||
| 25 | _PLOVER, | ||
| 26 | */ | ||
| 27 | }; | ||
| 28 | |||
| 29 | /* | ||
| 30 | enum uni_keycodes { | ||
| 31 | PLOVER, | ||
| 32 | QWERTY | ||
| 33 | }; | ||
| 34 | */ | ||
| 35 | |||
| 36 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 37 | [_QWERTY] = LAYOUT( | ||
| 38 | KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, | ||
| 39 | KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 40 | KC_1, KC_C, KC_V, KC_N, KC_M, KC_2), | ||
| 41 | /* | ||
| 42 | |||
| 43 | [_CHOOSE] = LAYOUT( | ||
| 44 | _______, _______, _______, _______, _______, PLOVER, _______, _______, _______, _______, _______, | ||
| 45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 46 | _______, _______, _______, _______, _______, _______), | ||
| 47 | [_PLOVER] = LAYOUT( | ||
| 48 | STN_S1, STN_TL, STN_PL, STN_HL, STN_ST1, STN_ST3, STN_FR, STN_PR, STN_LR, STN_TR, STN_DR , | ||
| 49 | STN_S2, STN_KL, STN_WL, STN_RL, STN_ST2, STN_ST4, STN_RR, STN_BR, STN_GR, STN_SR, STN_ZR , | ||
| 50 | STN_N1, STN_A, STN_O, STN_E, STN_U, STN_N2), | ||
| 51 | */ | ||
| 52 | |||
| 53 | }; | ||
| 54 | |||
| 55 | /* | ||
| 56 | switch (keycode) { | ||
| 57 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 58 | case PLOVER: | ||
| 59 | if (!record->event.pressed) { | ||
| 60 | layer_on(_PLOVER); | ||
| 61 | } | ||
| 62 | return false; | ||
| 63 | break; | ||
| 64 | case QWERTY: | ||
| 65 | if (!record->event.pressed) { | ||
| 66 | layer_on(_QWERTY); | ||
| 67 | } | ||
| 68 | return false; | ||
| 69 | break; | ||
| 70 | } | ||
| 71 | return true; | ||
| 72 | } | ||
| 73 | */ | ||
| 74 | |||
| 75 | void matrix_init_user() { | ||
| 76 | //steno_set_mode(STENO_MODE_GEMINI); // or STENO_MODE_BOLT | ||
| 77 | } | ||
diff --git a/keyboards/the_uni/readme.md b/keyboards/the_uni/readme.md new file mode 100644 index 000000000..72b5c5d2a --- /dev/null +++ b/keyboards/the_uni/readme.md | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # The Uni | ||
| 2 | |||
| 3 | | ||
| 4 |  | ||
| 5 |  | ||
| 6 | | ||
| 7 | A compact unibody split ortholinear keyboard made specifically for stenography. | ||
| 8 | | ||
| 9 | |||
| 10 | - Keyboard Maintainer: [Peter C. Park](https://github.com/petercpark) | ||
| 11 | - Link to Keyboard Files: [The_Uni](https://github.com/petercpark/The_Uni) | ||
| 12 | - Hardware Supported: The Uni v1 and v2 (pro micro or equivalent) | ||
| 13 | - Hardware Availability: [website](https://www.stenokeyboards.com) | ||
| 14 | | ||
| 15 | Make example for this keyboard (after setting up your build environment): | ||
| 16 | To enter the bootloader, short the rst and gnd pins with a conductive material such as a tweezer or a wire. Uni v2 will have reset pads next to the pro micro so you can short these pads to reset the pro micro. | ||
| 17 | make the_uni:default | ||
| 18 | | ||
| 19 | 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/the_uni/rules.mk b/keyboards/the_uni/rules.mk new file mode 100644 index 000000000..1422818bb --- /dev/null +++ b/keyboards/the_uni/rules.mk | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader | ||
| 5 | BOOTLOADER = atmel-dfu | ||
| 6 | |||
| 7 | |||
| 8 | # Build Options | ||
| 9 | # comment out to disable the options. | ||
| 10 | # | ||
| 11 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 12 | CONSOLE_ENABLE = no # Console for debug | ||
| 13 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 14 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 15 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 17 | RGBLIGHT_ENABLE = no | ||
| 18 | FORCE_NKRO = yes | ||
| 19 | EXTRAKEY_ENABLE = no | ||
| 20 | MOUSEKEY_ENABLE = no # Mouse keys | ||
| 21 | STENO_ENABLE = yes | ||
diff --git a/keyboards/the_uni/the_uni.c b/keyboards/the_uni/the_uni.c new file mode 100644 index 000000000..b99b06830 --- /dev/null +++ b/keyboards/the_uni/the_uni.c | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 Peter C. Park <peter@stenokeyboards.com> | ||
| 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 | #include "the_uni.h" | ||
diff --git a/keyboards/the_uni/the_uni.h b/keyboards/the_uni/the_uni.h new file mode 100644 index 000000000..9371c3a24 --- /dev/null +++ b/keyboards/the_uni/the_uni.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 Peter C. Park <peter@stenokeyboards.com> | ||
| 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 "quantum.h" | ||
| 21 | |||
| 22 | #define LAYOUT( \ | ||
| 23 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, \ | ||
| 24 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, \ | ||
| 25 | K202, K203, K204, K205, K206, K207 \ | ||
| 26 | ) { \ | ||
| 27 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010 }, \ | ||
| 28 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110 }, \ | ||
| 29 | { KC_NO, KC_NO, K202, K203, K204, K205, K206, K207, KC_NO, KC_NO, KC_NO } \ | ||
| 30 | } | ||
