From ffe9c220328ac05f7e6be64b6552547f7a12ed38 Mon Sep 17 00:00:00 2001 From: xiao <307671+xia0@users.noreply.github.com> Date: Tue, 22 Feb 2022 06:22:25 +1100 Subject: [Keyboard] Add keyboard 3dortho14u (#16329) Co-authored-by: xia0 --- .../handwired/3dortho14u/keymaps/default/keymap.c | 27 +++++ .../handwired/3dortho14u/keymaps/default/readme.md | 1 + .../handwired/3dortho14u/keymaps/via/keymap.c | 35 +++++++ .../handwired/3dortho14u/keymaps/via/rules.mk | 4 + keyboards/handwired/3dortho14u/readme.md | 40 +++++++ keyboards/handwired/3dortho14u/rev1/config.h | 6 ++ keyboards/handwired/3dortho14u/rev1/info.json | 115 +++++++++++++++++++++ keyboards/handwired/3dortho14u/rev1/readme.md | 39 +++++++ keyboards/handwired/3dortho14u/rev1/rev1.c | 4 + keyboards/handwired/3dortho14u/rev1/rev1.h | 6 ++ keyboards/handwired/3dortho14u/rev1/rules.mk | 1 + keyboards/handwired/3dortho14u/rev2/config.h | 6 ++ keyboards/handwired/3dortho14u/rev2/info.json | 115 +++++++++++++++++++++ keyboards/handwired/3dortho14u/rev2/readme.md | 39 +++++++ keyboards/handwired/3dortho14u/rev2/rev2.c | 4 + keyboards/handwired/3dortho14u/rev2/rev2.h | 6 ++ keyboards/handwired/3dortho14u/rev2/rules.mk | 1 + 17 files changed, 449 insertions(+) create mode 100644 keyboards/handwired/3dortho14u/keymaps/default/keymap.c create mode 100644 keyboards/handwired/3dortho14u/keymaps/default/readme.md create mode 100644 keyboards/handwired/3dortho14u/keymaps/via/keymap.c create mode 100644 keyboards/handwired/3dortho14u/keymaps/via/rules.mk create mode 100644 keyboards/handwired/3dortho14u/readme.md create mode 100644 keyboards/handwired/3dortho14u/rev1/config.h create mode 100644 keyboards/handwired/3dortho14u/rev1/info.json create mode 100644 keyboards/handwired/3dortho14u/rev1/readme.md create mode 100644 keyboards/handwired/3dortho14u/rev1/rev1.c create mode 100644 keyboards/handwired/3dortho14u/rev1/rev1.h create mode 100644 keyboards/handwired/3dortho14u/rev1/rules.mk create mode 100644 keyboards/handwired/3dortho14u/rev2/config.h create mode 100644 keyboards/handwired/3dortho14u/rev2/info.json create mode 100644 keyboards/handwired/3dortho14u/rev2/readme.md create mode 100644 keyboards/handwired/3dortho14u/rev2/rev2.c create mode 100644 keyboards/handwired/3dortho14u/rev2/rev2.h create mode 100644 keyboards/handwired/3dortho14u/rev2/rules.mk (limited to 'keyboards/handwired') diff --git a/keyboards/handwired/3dortho14u/keymaps/default/keymap.c b/keyboards/handwired/3dortho14u/keymaps/default/keymap.c new file mode 100644 index 0000000000..e8d96d22ce --- /dev/null +++ b/keyboards/handwired/3dortho14u/keymaps/default/keymap.c @@ -0,0 +1,27 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +// Defines names for use in layer keycodes and the keymap +enum layer_names { + _BASE, + _FN +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [_BASE] = LAYOUT( + KC_ESC , KC_1 , KC_2 , KC_3 , KC_4 , KC_5 , KC_6 , KC_7 , KC_8 , KC_9 , KC_0 , KC_MINS, KC_EQL , KC_BSPC, + KC_TAB , KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , KC_LBRC, KC_RBRC, KC_BSLS, + KC_CAPS, KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , KC_SCLN, KC_QUOT, KC_NO , KC_ENT , + KC_LSFT, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_N , KC_M , KC_COMM, KC_DOT , KC_SLSH, KC_RSFT, KC_UP , KC_DEL , + KC_LCTL, KC_LGUI, KC_LALT, MO(_FN), KC_NO , KC_NO , KC_SPC , KC_NO , KC_NO , KC_NO , KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT + ), + [_FN] = LAYOUT( + KC_GRV , KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_F5 , KC_F6 , KC_F7 , KC_F8 , KC_F9 , KC_F10 , KC_F11 , KC_F12 , KC_DEL , + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS , + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, KC_END + ) +}; diff --git a/keyboards/handwired/3dortho14u/keymaps/default/readme.md b/keyboards/handwired/3dortho14u/keymaps/default/readme.md new file mode 100644 index 0000000000..04e5d40fd5 --- /dev/null +++ b/keyboards/handwired/3dortho14u/keymaps/default/readme.md @@ -0,0 +1 @@ +# The default keymap for 3dortho14u diff --git a/keyboards/handwired/3dortho14u/keymaps/via/keymap.c b/keyboards/handwired/3dortho14u/keymaps/via/keymap.c new file mode 100644 index 0000000000..ba5a1cde3f --- /dev/null +++ b/keyboards/handwired/3dortho14u/keymaps/via/keymap.c @@ -0,0 +1,35 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [0] = LAYOUT( + KC_ESC , KC_1 , KC_2 , KC_3 , KC_4 , KC_5 , KC_6 , KC_7 , KC_8 , KC_9 , KC_0 , KC_MINS, KC_EQL , KC_BSPC, + KC_TAB , KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , KC_LBRC, KC_RBRC, KC_BSLS, + KC_CAPS, KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , KC_SCLN, KC_QUOT, KC_NO , KC_ENT , + KC_LSFT, KC_Z , KC_X , KC_C , KC_V , KC_B , KC_N , KC_M , KC_COMM, KC_DOT , KC_SLSH, KC_RSFT, KC_UP , KC_DEL , + KC_LCTL, KC_LGUI, KC_LALT, MO(1) , KC_NO , KC_NO , KC_SPC , KC_NO , KC_NO , KC_NO , KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT + ), + [1] = LAYOUT( + KC_GRV , KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_F5 , KC_F6 , KC_F7 , KC_F8 , KC_F9 , KC_F10 , KC_F11 , KC_F12 , KC_DEL , + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS , + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, KC_END + ), + [2] = LAYOUT( + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ + ), + [3] = LAYOUT( + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ + ) +}; diff --git a/keyboards/handwired/3dortho14u/keymaps/via/rules.mk b/keyboards/handwired/3dortho14u/keymaps/via/rules.mk new file mode 100644 index 0000000000..7a49719505 --- /dev/null +++ b/keyboards/handwired/3dortho14u/keymaps/via/rules.mk @@ -0,0 +1,4 @@ +# rules.mk overrides to enable VIA + +VIA_ENABLE = yes +LTO_ENABLE = yes diff --git a/keyboards/handwired/3dortho14u/readme.md b/keyboards/handwired/3dortho14u/readme.md new file mode 100644 index 0000000000..3163891d48 --- /dev/null +++ b/keyboards/handwired/3dortho14u/readme.md @@ -0,0 +1,40 @@ +# 3dortho14u + +![3dortho14u](https://i.imgur.com/us16LYTh.jpg) + +A symmetrical 14u wide ortholinear keyboard. + +In addition to the 3d printed parts and microcontroller, the following hardware is required: +* 8 * 12 mm M3 bolt +* Either: + * 8 * M3 muts and CA glue + OR + * 8 * 3x3 mm threaded insert +* Optional: + * USB daughter board + +--- + +* Keyboard Maintainer: [xia0](https://github.com/xia0) +* Hardware Supported: + * rev1: Teensy 2.0 (ATmega32u4) + * rev2: Arduino Pro Micro (ATmega32u4) +* Hardware Availability: [github](https://github.com/xia0/keeb_files/tree/main/3dortho14u) + +Make example for this keyboard (after setting up your build environment): + + make 3dortho14u/rev1:default + +Flashing example for this keyboard: + + make 3dortho14u/rev1:default:flash + +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). + +## Bootloader + +Enter the bootloader in 3 ways: + +* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard +* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead +* **Keycode in layout**: Press the key mapped to `RESET` if it is available diff --git a/keyboards/handwired/3dortho14u/rev1/config.h b/keyboards/handwired/3dortho14u/rev1/config.h new file mode 100644 index 0000000000..d78fd0a7f8 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev1/config.h @@ -0,0 +1,6 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "config_common.h" diff --git a/keyboards/handwired/3dortho14u/rev1/info.json b/keyboards/handwired/3dortho14u/rev1/info.json new file mode 100644 index 0000000000..72ed95e5f4 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev1/info.json @@ -0,0 +1,115 @@ +{ + "manufacturer": "xia0", + "keyboard_name": "3dortho14u", + "url": "", + "maintainer": "xia0", + "processor": "atmega32u4", + "debounce": 5, + "diode_direction": "COL2ROW", + "features": { + "audio": false, + "backlight": false, + "bluetooth": false, + "bootmagic": true, + "command": false, + "console": true, + "extrakey": true, + "midi": false, + "mousekey": true, + "nkro": true, + "rgblight": false, + "unicode": false + }, + "indicators": { + "caps_lock": "F0" + }, + "matrix_pins": { + "cols": ["D0", "D1", "D2", "D3", "C6", "C7", "D5", "D4", "D6", "D7", "B4", "B5", "B6", "F7"], + "rows": ["B0", "B1", "B2", "B3", "B7"] + }, + "usb": { + "device_ver": "0x0001", + "pid": "0x3D14", + "vid": "0x6662" + }, + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [0, 0], "x": 0, "y": 0}, + {"matrix": [0, 1], "x": 1, "y": 0}, + {"matrix": [0, 2], "x": 2, "y": 0}, + {"matrix": [0, 3], "x": 3, "y": 0}, + {"matrix": [0, 4], "x": 4, "y": 0}, + {"matrix": [0, 5], "x": 5, "y": 0}, + {"matrix": [0, 6], "x": 6, "y": 0}, + {"matrix": [0, 7], "x": 7, "y": 0}, + {"matrix": [0, 8], "x": 8, "y": 0}, + {"matrix": [0, 9], "x": 9, "y": 0}, + {"matrix": [0, 10], "x": 10, "y": 0}, + {"matrix": [0, 11], "x": 11, "y": 0}, + {"matrix": [0, 12], "x": 12, "y": 0}, + {"matrix": [0, 13], "x": 13, "y": 0}, + + {"matrix": [1, 0], "x": 0, "y": 1}, + {"matrix": [1, 1], "x": 1, "y": 1}, + {"matrix": [1, 2], "x": 2, "y": 1}, + {"matrix": [1, 3], "x": 3, "y": 1}, + {"matrix": [1, 4], "x": 4, "y": 1}, + {"matrix": [1, 5], "x": 5, "y": 1}, + {"matrix": [1, 6], "x": 6, "y": 1}, + {"matrix": [1, 7], "x": 7, "y": 1}, + {"matrix": [1, 8], "x": 8, "y": 1}, + {"matrix": [1, 9], "x": 9, "y": 1}, + {"matrix": [1, 10], "x": 10, "y": 1}, + {"matrix": [1, 11], "x": 11, "y": 1}, + {"matrix": [1, 12], "x": 12, "y": 1}, + {"matrix": [1, 13], "x": 13, "y": 1}, + + {"matrix": [2, 0], "x": 0, "y": 2}, + {"matrix": [2, 1], "x": 1, "y": 2}, + {"matrix": [2, 2], "x": 2, "y": 2}, + {"matrix": [2, 3], "x": 3, "y": 2}, + {"matrix": [2, 4], "x": 4, "y": 2}, + {"matrix": [2, 5], "x": 5, "y": 2}, + {"matrix": [2, 6], "x": 6, "y": 2}, + {"matrix": [2, 7], "x": 7, "y": 2}, + {"matrix": [2, 8], "x": 8, "y": 2}, + {"matrix": [2, 9], "x": 9, "y": 2}, + {"matrix": [2, 10], "x": 10, "y": 2}, + {"matrix": [2, 11], "x": 11, "y": 2}, + {"matrix": [2, 12], "x": 12, "y": 2}, + {"matrix": [2, 13], "x": 13, "y": 2}, + + {"matrix": [3, 0], "x": 0, "y": 3}, + {"matrix": [3, 1], "x": 1, "y": 3}, + {"matrix": [3, 2], "x": 2, "y": 3}, + {"matrix": [3, 3], "x": 3, "y": 3}, + {"matrix": [3, 4], "x": 4, "y": 3}, + {"matrix": [3, 5], "x": 5, "y": 3}, + {"matrix": [3, 6], "x": 6, "y": 3}, + {"matrix": [3, 7], "x": 7, "y": 3}, + {"matrix": [3, 8], "x": 8, "y": 3}, + {"matrix": [3, 9], "x": 9, "y": 3}, + {"matrix": [3, 10], "x": 10, "y": 3}, + {"matrix": [3, 11], "x": 11, "y": 3}, + {"matrix": [3, 12], "x": 12, "y": 3}, + {"matrix": [3, 13], "x": 13, "y": 3}, + + {"matrix": [4, 0], "x": 0, "y": 4}, + {"matrix": [4, 1], "x": 1, "y": 4}, + {"matrix": [4, 2], "x": 2, "y": 4}, + {"matrix": [4, 3], "x": 3, "y": 4}, + {"matrix": [4, 4], "x": 4, "y": 4}, + {"matrix": [4, 5], "x": 5, "y": 4}, + {"matrix": [4, 6], "x": 6, "y": 4}, + {"matrix": [4, 7], "x": 7, "y": 4}, + {"matrix": [4, 8], "x": 8, "y": 4}, + {"matrix": [4, 9], "x": 9, "y": 4}, + {"matrix": [4, 10], "x": 10, "y": 4}, + {"matrix": [4, 11], "x": 11, "y": 4}, + {"matrix": [4, 12], "x": 12, "y": 4}, + {"matrix": [4, 13], "x": 13, "y": 4} + ] + } + } +} diff --git a/keyboards/handwired/3dortho14u/rev1/readme.md b/keyboards/handwired/3dortho14u/rev1/readme.md new file mode 100644 index 0000000000..e785369b23 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev1/readme.md @@ -0,0 +1,39 @@ +# 3dortho14u + +![3dortho14u](https://i.imgur.com/us16LYTh.jpg) + +A symmetrical 14u wide ortholinear keyboard. + +In addition to the 3d printed parts and microcontroller, the following hardware is required: +* 8 * 12 mm M3 bolt +* Either: + * 8 * M3 muts and CA glue + OR + * 8 * 3x3 mm threaded insert +* Optional: + * USB daughter board + +--- + +* Keyboard Maintainer: [xia0](https://github.com/xia0) +* Hardware Supported: + * Teensy 2.0 (ATmega32u4) +* Hardware Availability: [github](https://github.com/xia0/keeb_files/tree/main/3dortho14u) + +Make example for this keyboard (after setting up your build environment): + + make 3dortho14u/rev1:default + +Flashing example for this keyboard: + + make 3dortho14u/rev1:default:flash + +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). + +## Bootloader + +Enter the bootloader in 3 ways: + +* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard +* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead +* **Keycode in layout**: Press the key mapped to `RESET` if it is available diff --git a/keyboards/handwired/3dortho14u/rev1/rev1.c b/keyboards/handwired/3dortho14u/rev1/rev1.c new file mode 100644 index 0000000000..220fd71cfe --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev1/rev1.c @@ -0,0 +1,4 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "rev1.h" diff --git a/keyboards/handwired/3dortho14u/rev1/rev1.h b/keyboards/handwired/3dortho14u/rev1/rev1.h new file mode 100644 index 0000000000..d8f47c43f8 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev1/rev1.h @@ -0,0 +1,6 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "quantum.h" diff --git a/keyboards/handwired/3dortho14u/rev1/rules.mk b/keyboards/handwired/3dortho14u/rev1/rules.mk new file mode 100644 index 0000000000..6e7633bfe0 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev1/rules.mk @@ -0,0 +1 @@ +# This file intentionally left blank diff --git a/keyboards/handwired/3dortho14u/rev2/config.h b/keyboards/handwired/3dortho14u/rev2/config.h new file mode 100644 index 0000000000..d78fd0a7f8 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev2/config.h @@ -0,0 +1,6 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "config_common.h" diff --git a/keyboards/handwired/3dortho14u/rev2/info.json b/keyboards/handwired/3dortho14u/rev2/info.json new file mode 100644 index 0000000000..705d6b5570 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev2/info.json @@ -0,0 +1,115 @@ +{ + "manufacturer": "xia0", + "keyboard_name": "3dortho14u", + "url": "", + "maintainer": "xia0", + "processor": "atmega32u4", + "debounce": 5, + "diode_direction": "COL2ROW", + "features": { + "audio": false, + "backlight": false, + "bluetooth": false, + "bootmagic": true, + "command": false, + "console": true, + "extrakey": true, + "midi": false, + "mousekey": true, + "nkro": true, + "rgblight": false, + "unicode": false + }, + "indicators": { + "caps_lock": "F4" + }, + "matrix_pins": { + "cols": ["F5", "F6", "F7", "B1", "B3", "B2", "B6"], + "rows": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6", "B4", "B5"] + }, + "usb": { + "device_ver": "0x0001", + "pid": "0x3D14", + "vid": "0x6662" + }, + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [0, 0], "x": 0, "y": 0}, + {"matrix": [0, 1], "x": 1, "y": 0}, + {"matrix": [0, 2], "x": 2, "y": 0}, + {"matrix": [0, 3], "x": 3, "y": 0}, + {"matrix": [0, 4], "x": 4, "y": 0}, + {"matrix": [0, 5], "x": 5, "y": 0}, + {"matrix": [0, 6], "x": 6, "y": 0}, + {"matrix": [5, 0], "x": 7, "y": 0}, + {"matrix": [5, 1], "x": 8, "y": 0}, + {"matrix": [5, 2], "x": 9, "y": 0}, + {"matrix": [5, 3], "x": 10, "y": 0}, + {"matrix": [5, 4], "x": 11, "y": 0}, + {"matrix": [5, 5], "x": 12, "y": 0}, + {"matrix": [5, 6], "x": 13, "y": 0}, + + {"matrix": [1, 0], "x": 0, "y": 1}, + {"matrix": [1, 1], "x": 1, "y": 1}, + {"matrix": [1, 2], "x": 2, "y": 1}, + {"matrix": [1, 3], "x": 3, "y": 1}, + {"matrix": [1, 4], "x": 4, "y": 1}, + {"matrix": [1, 5], "x": 5, "y": 1}, + {"matrix": [1, 6], "x": 6, "y": 1}, + {"matrix": [6, 0], "x": 7, "y": 1}, + {"matrix": [6, 1], "x": 8, "y": 1}, + {"matrix": [6, 2], "x": 9, "y": 1}, + {"matrix": [6, 3], "x": 10, "y": 1}, + {"matrix": [6, 4], "x": 11, "y": 1}, + {"matrix": [6, 5], "x": 12, "y": 1}, + {"matrix": [6, 6], "x": 13, "y": 1}, + + {"matrix": [2, 0], "x": 0, "y": 2}, + {"matrix": [2, 1], "x": 1, "y": 2}, + {"matrix": [2, 2], "x": 2, "y": 2}, + {"matrix": [2, 3], "x": 3, "y": 2}, + {"matrix": [2, 4], "x": 4, "y": 2}, + {"matrix": [2, 5], "x": 5, "y": 2}, + {"matrix": [2, 6], "x": 6, "y": 2}, + {"matrix": [7, 0], "x": 7, "y": 2}, + {"matrix": [7, 1], "x": 8, "y": 2}, + {"matrix": [7, 2], "x": 9, "y": 2}, + {"matrix": [7, 3], "x": 10, "y": 2}, + {"matrix": [7, 4], "x": 11, "y": 2}, + {"matrix": [7, 5], "x": 12, "y": 2}, + {"matrix": [7, 6], "x": 13, "y": 2}, + + {"matrix": [3, 0], "x": 0, "y": 3}, + {"matrix": [3, 1], "x": 1, "y": 3}, + {"matrix": [3, 2], "x": 2, "y": 3}, + {"matrix": [3, 3], "x": 3, "y": 3}, + {"matrix": [3, 4], "x": 4, "y": 3}, + {"matrix": [3, 5], "x": 5, "y": 3}, + {"matrix": [3, 6], "x": 6, "y": 3}, + {"matrix": [8, 0], "x": 7, "y": 3}, + {"matrix": [8, 1], "x": 8, "y": 3}, + {"matrix": [8, 2], "x": 9, "y": 3}, + {"matrix": [8, 3], "x": 10, "y": 3}, + {"matrix": [8, 4], "x": 11, "y": 3}, + {"matrix": [8, 5], "x": 12, "y": 3}, + {"matrix": [8, 6], "x": 13, "y": 3}, + + {"matrix": [4, 0], "x": 0, "y": 4}, + {"matrix": [4, 1], "x": 1, "y": 4}, + {"matrix": [4, 2], "x": 2, "y": 4}, + {"matrix": [4, 3], "x": 3, "y": 4}, + {"matrix": [4, 4], "x": 4, "y": 4}, + {"matrix": [4, 5], "x": 5, "y": 4}, + {"matrix": [4, 6], "x": 6, "y": 4}, + {"matrix": [9, 0], "x": 7, "y": 4}, + {"matrix": [9, 1], "x": 8, "y": 4}, + {"matrix": [9, 2], "x": 9, "y": 4}, + {"matrix": [9, 3], "x": 10, "y": 4}, + {"matrix": [9, 4], "x": 11, "y": 4}, + {"matrix": [9, 5], "x": 12, "y": 4}, + {"matrix": [9, 6], "x": 13, "y": 4} + ] + } + } +} diff --git a/keyboards/handwired/3dortho14u/rev2/readme.md b/keyboards/handwired/3dortho14u/rev2/readme.md new file mode 100644 index 0000000000..bb2e982130 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev2/readme.md @@ -0,0 +1,39 @@ +# 3dortho14u + +![3dortho14u](https://i.imgur.com/us16LYTh.jpg) + +A symmetrical 14u wide ortholinear keyboard. + +In addition to the 3d printed parts and microcontroller, the following hardware is required: +* 8 * 12 mm M3 bolt +* Either: + * 8 * M3 muts and CA glue + OR + * 8 * 3x3 mm threaded insert +* Optional: + * USB daughter board + +--- + +* Keyboard Maintainer: [xia0](https://github.com/xia0) +* Hardware Supported: + * Arduino Pro Micro (ATmega32u4) +* Hardware Availability: [github](https://github.com/xia0/keeb_files/tree/main/3dortho14u) + +Make example for this keyboard (after setting up your build environment): + + make 3dortho14u/rev2:default + +Flashing example for this keyboard: + + make 3dortho14u/rev2:default:flash + +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). + +## Bootloader + +Enter the bootloader in 3 ways: + +* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard +* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead +* **Keycode in layout**: Press the key mapped to `RESET` if it is available diff --git a/keyboards/handwired/3dortho14u/rev2/rev2.c b/keyboards/handwired/3dortho14u/rev2/rev2.c new file mode 100644 index 0000000000..545fea9fad --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev2/rev2.c @@ -0,0 +1,4 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "rev2.h" diff --git a/keyboards/handwired/3dortho14u/rev2/rev2.h b/keyboards/handwired/3dortho14u/rev2/rev2.h new file mode 100644 index 0000000000..d8f47c43f8 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev2/rev2.h @@ -0,0 +1,6 @@ +// Copyright 2022 Xiao (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "quantum.h" diff --git a/keyboards/handwired/3dortho14u/rev2/rules.mk b/keyboards/handwired/3dortho14u/rev2/rules.mk new file mode 100644 index 0000000000..6e7633bfe0 --- /dev/null +++ b/keyboards/handwired/3dortho14u/rev2/rules.mk @@ -0,0 +1 @@ +# This file intentionally left blank -- cgit v1.2.3