diff options
author | Drashna Jael're <drashna@live.com> | 2022-03-25 16:34:17 -0700 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2022-03-25 16:34:17 -0700 |
commit | 00b8c127c6e2def495301781718d2db1df576573 (patch) | |
tree | 0032966b04cfff5ee2c2903928c5c31e36029399 /layouts/community/ortho_1x1 | |
parent | 07a3743e878e92a9236736a65d167de26478def6 (diff) |
Readd default layouts
Diffstat (limited to 'layouts/community/ortho_1x1')
-rw-r--r-- | layouts/community/ortho_1x1/info.json | 12 | ||||
-rw-r--r-- | layouts/community/ortho_1x1/layout.json | 1 | ||||
-rw-r--r-- | layouts/community/ortho_1x1/readme.md | 3 | ||||
-rw-r--r-- | layouts/community/ortho_1x1/test/keymap.c | 12 |
4 files changed, 28 insertions, 0 deletions
diff --git a/layouts/community/ortho_1x1/info.json b/layouts/community/ortho_1x1/info.json new file mode 100644 index 0000000000..33fed0be4b --- /dev/null +++ b/layouts/community/ortho_1x1/info.json @@ -0,0 +1,12 @@ +{ + "keyboard_name": "1x1 ortholinear layout", + "url": "", + "maintainer": "qmk", + "layouts": { + "LAYOUT_ortho_1x1": { + "layout": [ + {"x":0, "y":0} + ] + } + } +} diff --git a/layouts/community/ortho_1x1/layout.json b/layouts/community/ortho_1x1/layout.json new file mode 100644 index 0000000000..7f8bcf0ca1 --- /dev/null +++ b/layouts/community/ortho_1x1/layout.json @@ -0,0 +1 @@ +[{a:7},""] diff --git a/layouts/community/ortho_1x1/readme.md b/layouts/community/ortho_1x1/readme.md new file mode 100644 index 0000000000..c6352dd8d5 --- /dev/null +++ b/layouts/community/ortho_1x1/readme.md @@ -0,0 +1,3 @@ +# ortho_1x1 + + LAYOUT_ortho_1x1 diff --git a/layouts/community/ortho_1x1/test/keymap.c b/layouts/community/ortho_1x1/test/keymap.c new file mode 100644 index 0000000000..9bda2ff9a7 --- /dev/null +++ b/layouts/community/ortho_1x1/test/keymap.c @@ -0,0 +1,12 @@ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┐ + * │ A │ + * └───┘ + */ + [0] = LAYOUT_ortho_1x1( + KC_A + ) +}; |