Readd default layouts

This commit is contained in:
Drashna Jael're
2022-03-25 16:34:17 -07:00
parent 07a3743e87
commit 00b8c127c6
16 changed files with 378 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"keyboard_name": "1x1 ortholinear layout",
"url": "",
"maintainer": "qmk",
"layouts": {
"LAYOUT_ortho_1x1": {
"layout": [
{"x":0, "y":0}
]
}
}
}
+1
View File
@@ -0,0 +1 @@
[{a:7},""]
+3
View File
@@ -0,0 +1,3 @@
# ortho_1x1
LAYOUT_ortho_1x1
+12
View File
@@ -0,0 +1,12 @@
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* ┌───┐
* │ A │
* └───┘
*/
[0] = LAYOUT_ortho_1x1(
KC_A
)
};