aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxiao <307671+xia0@users.noreply.github.com>2022-02-22 06:22:25 +1100
committerGitHub <noreply@github.com>2022-02-21 11:22:25 -0800
commitffe9c220328ac05f7e6be64b6552547f7a12ed38 (patch)
treeac0ece585666560fad627b41a08133b13d34e019
parent239fed2ef1f41d8d2c962e8519de39fff5ce44ac (diff)
downloadqmk_firmware-ffe9c220328ac05f7e6be64b6552547f7a12ed38.tar.gz
qmk_firmware-ffe9c220328ac05f7e6be64b6552547f7a12ed38.zip
[Keyboard] Add keyboard 3dortho14u (#16329)
Co-authored-by: xia0 <xiao@morgan.net.au>
-rw-r--r--keyboards/handwired/3dortho14u/keymaps/default/keymap.c27
-rw-r--r--keyboards/handwired/3dortho14u/keymaps/default/readme.md1
-rw-r--r--keyboards/handwired/3dortho14u/keymaps/via/keymap.c35
-rw-r--r--keyboards/handwired/3dortho14u/keymaps/via/rules.mk4
-rw-r--r--keyboards/handwired/3dortho14u/readme.md40
-rw-r--r--keyboards/handwired/3dortho14u/rev1/config.h6
-rw-r--r--keyboards/handwired/3dortho14u/rev1/info.json115
-rw-r--r--keyboards/handwired/3dortho14u/rev1/readme.md39
-rw-r--r--keyboards/handwired/3dortho14u/rev1/rev1.c4
-rw-r--r--keyboards/handwired/3dortho14u/rev1/rev1.h6
-rw-r--r--keyboards/handwired/3dortho14u/rev1/rules.mk1
-rw-r--r--keyboards/handwired/3dortho14u/rev2/config.h6
-rw-r--r--keyboards/handwired/3dortho14u/rev2/info.json115
-rw-r--r--keyboards/handwired/3dortho14u/rev2/readme.md39
-rw-r--r--keyboards/handwired/3dortho14u/rev2/rev2.c4
-rw-r--r--keyboards/handwired/3dortho14u/rev2/rev2.h6
-rw-r--r--keyboards/handwired/3dortho14u/rev2/rules.mk1
17 files changed, 449 insertions, 0 deletions
diff --git a/keyboards/handwired/3dortho14u/keymaps/default/keymap.c b/keyboards/handwired/3dortho14u/keymaps/default/keymap.c
new file mode 100644
index 000000000..e8d96d22c
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/keymaps/default/keymap.c
@@ -0,0 +1,27 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#include QMK_KEYBOARD_H
5
6// Defines names for use in layer keycodes and the keymap
7enum layer_names {
8 _BASE,
9 _FN
10};
11
12const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
13 [_BASE] = LAYOUT(
14 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,
15 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,
16 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 ,
17 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 ,
18 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
19 ),
20 [_FN] = LAYOUT(
21 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 ,
22 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
23 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
24 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS ,
25 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, KC_END
26 )
27};
diff --git a/keyboards/handwired/3dortho14u/keymaps/default/readme.md b/keyboards/handwired/3dortho14u/keymaps/default/readme.md
new file mode 100644
index 000000000..04e5d40fd
--- /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 000000000..ba5a1cde3
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/keymaps/via/keymap.c
@@ -0,0 +1,35 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#include QMK_KEYBOARD_H
5
6const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
7 [0] = LAYOUT(
8 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,
9 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,
10 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 ,
11 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 ,
12 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
13 ),
14 [1] = LAYOUT(
15 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 ,
16 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
17 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
18 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS ,
19 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, KC_END
20 ),
21 [2] = LAYOUT(
22 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
23 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
24 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
25 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
26 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
27 ),
28 [3] = LAYOUT(
29 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
30 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
31 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
32 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
34 )
35};
diff --git a/keyboards/handwired/3dortho14u/keymaps/via/rules.mk b/keyboards/handwired/3dortho14u/keymaps/via/rules.mk
new file mode 100644
index 000000000..7a4971950
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/keymaps/via/rules.mk
@@ -0,0 +1,4 @@
1# rules.mk overrides to enable VIA
2
3VIA_ENABLE = yes
4LTO_ENABLE = yes
diff --git a/keyboards/handwired/3dortho14u/readme.md b/keyboards/handwired/3dortho14u/readme.md
new file mode 100644
index 000000000..3163891d4
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/readme.md
@@ -0,0 +1,40 @@
1# 3dortho14u
2
3![3dortho14u](https://i.imgur.com/us16LYTh.jpg)
4
5A symmetrical 14u wide ortholinear keyboard.
6
7In addition to the 3d printed parts and microcontroller, the following hardware is required:
8* 8 * 12 mm M3 bolt
9* Either:
10 * 8 * M3 muts and CA glue
11 OR
12 * 8 * 3x3 mm threaded insert
13* Optional:
14 * USB daughter board
15
16---
17
18* Keyboard Maintainer: [xia0](https://github.com/xia0)
19* Hardware Supported:
20 * rev1: Teensy 2.0 (ATmega32u4)
21 * rev2: Arduino Pro Micro (ATmega32u4)
22* Hardware Availability: [github](https://github.com/xia0/keeb_files/tree/main/3dortho14u)
23
24Make example for this keyboard (after setting up your build environment):
25
26 make 3dortho14u/rev1:default
27
28Flashing example for this keyboard:
29
30 make 3dortho14u/rev1:default:flash
31
32See 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).
33
34## Bootloader
35
36Enter the bootloader in 3 ways:
37
38* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
39* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
40* **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 000000000..d78fd0a7f
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev1/config.h
@@ -0,0 +1,6 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#pragma once
5
6#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 000000000..72ed95e5f
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev1/info.json
@@ -0,0 +1,115 @@
1{
2 "manufacturer": "xia0",
3 "keyboard_name": "3dortho14u",
4 "url": "",
5 "maintainer": "xia0",
6 "processor": "atmega32u4",
7 "debounce": 5,
8 "diode_direction": "COL2ROW",
9 "features": {
10 "audio": false,
11 "backlight": false,
12 "bluetooth": false,
13 "bootmagic": true,
14 "command": false,
15 "console": true,
16 "extrakey": true,
17 "midi": false,
18 "mousekey": true,
19 "nkro": true,
20 "rgblight": false,
21 "unicode": false
22 },
23 "indicators": {
24 "caps_lock": "F0"
25 },
26 "matrix_pins": {
27 "cols": ["D0", "D1", "D2", "D3", "C6", "C7", "D5", "D4", "D6", "D7", "B4", "B5", "B6", "F7"],
28 "rows": ["B0", "B1", "B2", "B3", "B7"]
29 },
30 "usb": {
31 "device_ver": "0x0001",
32 "pid": "0x3D14",
33 "vid": "0x6662"
34 },
35 "layouts": {
36 "LAYOUT": {
37 "layout": [
38 {"matrix": [0, 0], "x": 0, "y": 0},
39 {"matrix": [0, 1], "x": 1, "y": 0},
40 {"matrix": [0, 2], "x": 2, "y": 0},
41 {"matrix": [0, 3], "x": 3, "y": 0},
42 {"matrix": [0, 4], "x": 4, "y": 0},
43 {"matrix": [0, 5], "x": 5, "y": 0},
44 {"matrix": [0, 6], "x": 6, "y": 0},
45 {"matrix": [0, 7], "x": 7, "y": 0},
46 {"matrix": [0, 8], "x": 8, "y": 0},
47 {"matrix": [0, 9], "x": 9, "y": 0},
48 {"matrix": [0, 10], "x": 10, "y": 0},
49 {"matrix": [0, 11], "x": 11, "y": 0},
50 {"matrix": [0, 12], "x": 12, "y": 0},
51 {"matrix": [0, 13], "x": 13, "y": 0},
52
53 {"matrix": [1, 0], "x": 0, "y": 1},
54 {"matrix": [1, 1], "x": 1, "y": 1},
55 {"matrix": [1, 2], "x": 2, "y": 1},
56 {"matrix": [1, 3], "x": 3, "y": 1},
57 {"matrix": [1, 4], "x": 4, "y": 1},
58 {"matrix": [1, 5], "x": 5, "y": 1},
59 {"matrix": [1, 6], "x": 6, "y": 1},
60 {"matrix": [1, 7], "x": 7, "y": 1},
61 {"matrix": [1, 8], "x": 8, "y": 1},
62 {"matrix": [1, 9], "x": 9, "y": 1},
63 {"matrix": [1, 10], "x": 10, "y": 1},
64 {"matrix": [1, 11], "x": 11, "y": 1},
65 {"matrix": [1, 12], "x": 12, "y": 1},
66 {"matrix": [1, 13], "x": 13, "y": 1},
67
68 {"matrix": [2, 0], "x": 0, "y": 2},
69 {"matrix": [2, 1], "x": 1, "y": 2},
70 {"matrix": [2, 2], "x": 2, "y": 2},
71 {"matrix": [2, 3], "x": 3, "y": 2},
72 {"matrix": [2, 4], "x": 4, "y": 2},
73 {"matrix": [2, 5], "x": 5, "y": 2},
74 {"matrix": [2, 6], "x": 6, "y": 2},
75 {"matrix": [2, 7], "x": 7, "y": 2},
76 {"matrix": [2, 8], "x": 8, "y": 2},
77 {"matrix": [2, 9], "x": 9, "y": 2},
78 {"matrix": [2, 10], "x": 10, "y": 2},
79 {"matrix": [2, 11], "x": 11, "y": 2},
80 {"matrix": [2, 12], "x": 12, "y": 2},
81 {"matrix": [2, 13], "x": 13, "y": 2},
82
83 {"matrix": [3, 0], "x": 0, "y": 3},
84 {"matrix": [3, 1], "x": 1, "y": 3},
85 {"matrix": [3, 2], "x": 2, "y": 3},
86 {"matrix": [3, 3], "x": 3, "y": 3},
87 {"matrix": [3, 4], "x": 4, "y": 3},
88 {"matrix": [3, 5], "x": 5, "y": 3},
89 {"matrix": [3, 6], "x": 6, "y": 3},
90 {"matrix": [3, 7], "x": 7, "y": 3},
91 {"matrix": [3, 8], "x": 8, "y": 3},
92 {"matrix": [3, 9], "x": 9, "y": 3},
93 {"matrix": [3, 10], "x": 10, "y": 3},
94 {"matrix": [3, 11], "x": 11, "y": 3},
95 {"matrix": [3, 12], "x": 12, "y": 3},
96 {"matrix": [3, 13], "x": 13, "y": 3},
97
98 {"matrix": [4, 0], "x": 0, "y": 4},
99 {"matrix": [4, 1], "x": 1, "y": 4},
100 {"matrix": [4, 2], "x": 2, "y": 4},
101 {"matrix": [4, 3], "x": 3, "y": 4},
102 {"matrix": [4, 4], "x": 4, "y": 4},
103 {"matrix": [4, 5], "x": 5, "y": 4},
104 {"matrix": [4, 6], "x": 6, "y": 4},
105 {"matrix": [4, 7], "x": 7, "y": 4},
106 {"matrix": [4, 8], "x": 8, "y": 4},
107 {"matrix": [4, 9], "x": 9, "y": 4},
108 {"matrix": [4, 10], "x": 10, "y": 4},
109 {"matrix": [4, 11], "x": 11, "y": 4},
110 {"matrix": [4, 12], "x": 12, "y": 4},
111 {"matrix": [4, 13], "x": 13, "y": 4}
112 ]
113 }
114 }
115}
diff --git a/keyboards/handwired/3dortho14u/rev1/readme.md b/keyboards/handwired/3dortho14u/rev1/readme.md
new file mode 100644
index 000000000..e785369b2
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev1/readme.md
@@ -0,0 +1,39 @@
1# 3dortho14u
2
3![3dortho14u](https://i.imgur.com/us16LYTh.jpg)
4
5A symmetrical 14u wide ortholinear keyboard.
6
7In addition to the 3d printed parts and microcontroller, the following hardware is required:
8* 8 * 12 mm M3 bolt
9* Either:
10 * 8 * M3 muts and CA glue
11 OR
12 * 8 * 3x3 mm threaded insert
13* Optional:
14 * USB daughter board
15
16---
17
18* Keyboard Maintainer: [xia0](https://github.com/xia0)
19* Hardware Supported:
20 * Teensy 2.0 (ATmega32u4)
21* Hardware Availability: [github](https://github.com/xia0/keeb_files/tree/main/3dortho14u)
22
23Make example for this keyboard (after setting up your build environment):
24
25 make 3dortho14u/rev1:default
26
27Flashing example for this keyboard:
28
29 make 3dortho14u/rev1:default:flash
30
31See 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).
32
33## Bootloader
34
35Enter the bootloader in 3 ways:
36
37* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
38* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
39* **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 000000000..220fd71cf
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev1/rev1.c
@@ -0,0 +1,4 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#include "rev1.h"
diff --git a/keyboards/handwired/3dortho14u/rev1/rev1.h b/keyboards/handwired/3dortho14u/rev1/rev1.h
new file mode 100644
index 000000000..d8f47c43f
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev1/rev1.h
@@ -0,0 +1,6 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#pragma once
5
6#include "quantum.h"
diff --git a/keyboards/handwired/3dortho14u/rev1/rules.mk b/keyboards/handwired/3dortho14u/rev1/rules.mk
new file mode 100644
index 000000000..6e7633bfe
--- /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 000000000..d78fd0a7f
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev2/config.h
@@ -0,0 +1,6 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#pragma once
5
6#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 000000000..705d6b557
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev2/info.json
@@ -0,0 +1,115 @@
1{
2 "manufacturer": "xia0",
3 "keyboard_name": "3dortho14u",
4 "url": "",
5 "maintainer": "xia0",
6 "processor": "atmega32u4",
7 "debounce": 5,
8 "diode_direction": "COL2ROW",
9 "features": {
10 "audio": false,
11 "backlight": false,
12 "bluetooth": false,
13 "bootmagic": true,
14 "command": false,
15 "console": true,
16 "extrakey": true,
17 "midi": false,
18 "mousekey": true,
19 "nkro": true,
20 "rgblight": false,
21 "unicode": false
22 },
23 "indicators": {
24 "caps_lock": "F4"
25 },
26 "matrix_pins": {
27 "cols": ["F5", "F6", "F7", "B1", "B3", "B2", "B6"],
28 "rows": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6", "B4", "B5"]
29 },
30 "usb": {
31 "device_ver": "0x0001",
32 "pid": "0x3D14",
33 "vid": "0x6662"
34 },
35 "layouts": {
36 "LAYOUT": {
37 "layout": [
38 {"matrix": [0, 0], "x": 0, "y": 0},
39 {"matrix": [0, 1], "x": 1, "y": 0},
40 {"matrix": [0, 2], "x": 2, "y": 0},
41 {"matrix": [0, 3], "x": 3, "y": 0},
42 {"matrix": [0, 4], "x": 4, "y": 0},
43 {"matrix": [0, 5], "x": 5, "y": 0},
44 {"matrix": [0, 6], "x": 6, "y": 0},
45 {"matrix": [5, 0], "x": 7, "y": 0},
46 {"matrix": [5, 1], "x": 8, "y": 0},
47 {"matrix": [5, 2], "x": 9, "y": 0},
48 {"matrix": [5, 3], "x": 10, "y": 0},
49 {"matrix": [5, 4], "x": 11, "y": 0},
50 {"matrix": [5, 5], "x": 12, "y": 0},
51 {"matrix": [5, 6], "x": 13, "y": 0},
52
53 {"matrix": [1, 0], "x": 0, "y": 1},
54 {"matrix": [1, 1], "x": 1, "y": 1},
55 {"matrix": [1, 2], "x": 2, "y": 1},
56 {"matrix": [1, 3], "x": 3, "y": 1},
57 {"matrix": [1, 4], "x": 4, "y": 1},
58 {"matrix": [1, 5], "x": 5, "y": 1},
59 {"matrix": [1, 6], "x": 6, "y": 1},
60 {"matrix": [6, 0], "x": 7, "y": 1},
61 {"matrix": [6, 1], "x": 8, "y": 1},
62 {"matrix": [6, 2], "x": 9, "y": 1},
63 {"matrix": [6, 3], "x": 10, "y": 1},
64 {"matrix": [6, 4], "x": 11, "y": 1},
65 {"matrix": [6, 5], "x": 12, "y": 1},
66 {"matrix": [6, 6], "x": 13, "y": 1},
67
68 {"matrix": [2, 0], "x": 0, "y": 2},
69 {"matrix": [2, 1], "x": 1, "y": 2},
70 {"matrix": [2, 2], "x": 2, "y": 2},
71 {"matrix": [2, 3], "x": 3, "y": 2},
72 {"matrix": [2, 4], "x": 4, "y": 2},
73 {"matrix": [2, 5], "x": 5, "y": 2},
74 {"matrix": [2, 6], "x": 6, "y": 2},
75 {"matrix": [7, 0], "x": 7, "y": 2},
76 {"matrix": [7, 1], "x": 8, "y": 2},
77 {"matrix": [7, 2], "x": 9, "y": 2},
78 {"matrix": [7, 3], "x": 10, "y": 2},
79 {"matrix": [7, 4], "x": 11, "y": 2},
80 {"matrix": [7, 5], "x": 12, "y": 2},
81 {"matrix": [7, 6], "x": 13, "y": 2},
82
83 {"matrix": [3, 0], "x": 0, "y": 3},
84 {"matrix": [3, 1], "x": 1, "y": 3},
85 {"matrix": [3, 2], "x": 2, "y": 3},
86 {"matrix": [3, 3], "x": 3, "y": 3},
87 {"matrix": [3, 4], "x": 4, "y": 3},
88 {"matrix": [3, 5], "x": 5, "y": 3},
89 {"matrix": [3, 6], "x": 6, "y": 3},
90 {"matrix": [8, 0], "x": 7, "y": 3},
91 {"matrix": [8, 1], "x": 8, "y": 3},
92 {"matrix": [8, 2], "x": 9, "y": 3},
93 {"matrix": [8, 3], "x": 10, "y": 3},
94 {"matrix": [8, 4], "x": 11, "y": 3},
95 {"matrix": [8, 5], "x": 12, "y": 3},
96 {"matrix": [8, 6], "x": 13, "y": 3},
97
98 {"matrix": [4, 0], "x": 0, "y": 4},
99 {"matrix": [4, 1], "x": 1, "y": 4},
100 {"matrix": [4, 2], "x": 2, "y": 4},
101 {"matrix": [4, 3], "x": 3, "y": 4},
102 {"matrix": [4, 4], "x": 4, "y": 4},
103 {"matrix": [4, 5], "x": 5, "y": 4},
104 {"matrix": [4, 6], "x": 6, "y": 4},
105 {"matrix": [9, 0], "x": 7, "y": 4},
106 {"matrix": [9, 1], "x": 8, "y": 4},
107 {"matrix": [9, 2], "x": 9, "y": 4},
108 {"matrix": [9, 3], "x": 10, "y": 4},
109 {"matrix": [9, 4], "x": 11, "y": 4},
110 {"matrix": [9, 5], "x": 12, "y": 4},
111 {"matrix": [9, 6], "x": 13, "y": 4}
112 ]
113 }
114 }
115}
diff --git a/keyboards/handwired/3dortho14u/rev2/readme.md b/keyboards/handwired/3dortho14u/rev2/readme.md
new file mode 100644
index 000000000..bb2e98213
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev2/readme.md
@@ -0,0 +1,39 @@
1# 3dortho14u
2
3![3dortho14u](https://i.imgur.com/us16LYTh.jpg)
4
5A symmetrical 14u wide ortholinear keyboard.
6
7In addition to the 3d printed parts and microcontroller, the following hardware is required:
8* 8 * 12 mm M3 bolt
9* Either:
10 * 8 * M3 muts and CA glue
11 OR
12 * 8 * 3x3 mm threaded insert
13* Optional:
14 * USB daughter board
15
16---
17
18* Keyboard Maintainer: [xia0](https://github.com/xia0)
19* Hardware Supported:
20 * Arduino Pro Micro (ATmega32u4)
21* Hardware Availability: [github](https://github.com/xia0/keeb_files/tree/main/3dortho14u)
22
23Make example for this keyboard (after setting up your build environment):
24
25 make 3dortho14u/rev2:default
26
27Flashing example for this keyboard:
28
29 make 3dortho14u/rev2:default:flash
30
31See 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).
32
33## Bootloader
34
35Enter the bootloader in 3 ways:
36
37* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
38* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
39* **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 000000000..545fea9fa
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev2/rev2.c
@@ -0,0 +1,4 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#include "rev2.h"
diff --git a/keyboards/handwired/3dortho14u/rev2/rev2.h b/keyboards/handwired/3dortho14u/rev2/rev2.h
new file mode 100644
index 000000000..d8f47c43f
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev2/rev2.h
@@ -0,0 +1,6 @@
1// Copyright 2022 Xiao (@xia0)
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#pragma once
5
6#include "quantum.h"
diff --git a/keyboards/handwired/3dortho14u/rev2/rules.mk b/keyboards/handwired/3dortho14u/rev2/rules.mk
new file mode 100644
index 000000000..6e7633bfe
--- /dev/null
+++ b/keyboards/handwired/3dortho14u/rev2/rules.mk
@@ -0,0 +1 @@
# This file intentionally left blank