Browse Source

[Keyboard] Add keyboard 3dortho14u (#16329)

Co-authored-by: xia0 <xiao@morgan.net.au>
pull/15933/merge
xiao 2 years ago
committed by GitHub
parent
commit
ffe9c22032
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 449 additions and 0 deletions
  1. +27
    -0
      keyboards/handwired/3dortho14u/keymaps/default/keymap.c
  2. +1
    -0
      keyboards/handwired/3dortho14u/keymaps/default/readme.md
  3. +35
    -0
      keyboards/handwired/3dortho14u/keymaps/via/keymap.c
  4. +4
    -0
      keyboards/handwired/3dortho14u/keymaps/via/rules.mk
  5. +40
    -0
      keyboards/handwired/3dortho14u/readme.md
  6. +6
    -0
      keyboards/handwired/3dortho14u/rev1/config.h
  7. +115
    -0
      keyboards/handwired/3dortho14u/rev1/info.json
  8. +39
    -0
      keyboards/handwired/3dortho14u/rev1/readme.md
  9. +4
    -0
      keyboards/handwired/3dortho14u/rev1/rev1.c
  10. +6
    -0
      keyboards/handwired/3dortho14u/rev1/rev1.h
  11. +1
    -0
      keyboards/handwired/3dortho14u/rev1/rules.mk
  12. +6
    -0
      keyboards/handwired/3dortho14u/rev2/config.h
  13. +115
    -0
      keyboards/handwired/3dortho14u/rev2/info.json
  14. +39
    -0
      keyboards/handwired/3dortho14u/rev2/readme.md
  15. +4
    -0
      keyboards/handwired/3dortho14u/rev2/rev2.c
  16. +6
    -0
      keyboards/handwired/3dortho14u/rev2/rev2.h
  17. +1
    -0
      keyboards/handwired/3dortho14u/rev2/rules.mk

+ 27
- 0
keyboards/handwired/3dortho14u/keymaps/default/keymap.c View File

@ -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
)
};

+ 1
- 0
keyboards/handwired/3dortho14u/keymaps/default/readme.md View File

@ -0,0 +1 @@
# The default keymap for 3dortho14u

+ 35
- 0
keyboards/handwired/3dortho14u/keymaps/via/keymap.c View File

@ -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(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
)
};

+ 4
- 0
keyboards/handwired/3dortho14u/keymaps/via/rules.mk View File

@ -0,0 +1,4 @@
# rules.mk overrides to enable VIA
VIA_ENABLE = yes
LTO_ENABLE = yes

+ 40
- 0
keyboards/handwired/3dortho14u/readme.md View File

@ -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

+ 6
- 0
keyboards/handwired/3dortho14u/rev1/config.h View File

@ -0,0 +1,6 @@
// Copyright 2022 Xiao (@xia0)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "config_common.h"

+ 115
- 0
keyboards/handwired/3dortho14u/rev1/info.json View File

@ -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}
]
}
}
}

+ 39
- 0
keyboards/handwired/3dortho14u/rev1/readme.md View File

@ -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

+ 4
- 0
keyboards/handwired/3dortho14u/rev1/rev1.c View File

@ -0,0 +1,4 @@
// Copyright 2022 Xiao (@xia0)
// SPDX-License-Identifier: GPL-2.0-or-later
#include "rev1.h"

+ 6
- 0
keyboards/handwired/3dortho14u/rev1/rev1.h View File

@ -0,0 +1,6 @@
// Copyright 2022 Xiao (@xia0)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "quantum.h"

+ 1
- 0
keyboards/handwired/3dortho14u/rev1/rules.mk View File

@ -0,0 +1 @@
# This file intentionally left blank

+ 6
- 0
keyboards/handwired/3dortho14u/rev2/config.h View File

@ -0,0 +1,6 @@
// Copyright 2022 Xiao (@xia0)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "config_common.h"

+ 115
- 0
keyboards/handwired/3dortho14u/rev2/info.json View File

@ -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}
]
}
}
}

+ 39
- 0
keyboards/handwired/3dortho14u/rev2/readme.md View File

@ -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

+ 4
- 0
keyboards/handwired/3dortho14u/rev2/rev2.c View File

@ -0,0 +1,4 @@
// Copyright 2022 Xiao (@xia0)
// SPDX-License-Identifier: GPL-2.0-or-later
#include "rev2.h"

+ 6
- 0
keyboards/handwired/3dortho14u/rev2/rev2.h View File

@ -0,0 +1,6 @@
// Copyright 2022 Xiao (@xia0)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "quantum.h"

+ 1
- 0
keyboards/handwired/3dortho14u/rev2/rules.mk View File

@ -0,0 +1 @@
# This file intentionally left blank

Loading…
Cancel
Save