diff options
| author | Suschman <Suschman@users.noreply.github.com> | 2021-07-20 02:30:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-19 17:30:09 -0700 |
| commit | 7e698c71cd8b9d0cdef6c622cfdd88a13e2a6587 (patch) | |
| tree | f94f7ba52479e650a90200095cb21f4e0c1a7846 /layouts/default/ortho_2x6 | |
| parent | 046429fa87ab26bd131c262e590aa6cd03dd9f75 (diff) | |
| download | qmk_firmware-7e698c71cd8b9d0cdef6c622cfdd88a13e2a6587.tar.gz qmk_firmware-7e698c71cd8b9d0cdef6c622cfdd88a13e2a6587.zip | |
Six Pack and ortho_ layout updates (#13587)
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Suschman <suschman@gmail.com>
Diffstat (limited to 'layouts/default/ortho_2x6')
| -rw-r--r-- | layouts/default/ortho_2x6/default_ortho_2x6/keymap.c | 15 | ||||
| -rw-r--r-- | layouts/default/ortho_2x6/info.json | 26 | ||||
| -rw-r--r-- | layouts/default/ortho_2x6/layout.json | 2 | ||||
| -rw-r--r-- | layouts/default/ortho_2x6/readme.md | 3 |
4 files changed, 46 insertions, 0 deletions
diff --git a/layouts/default/ortho_2x6/default_ortho_2x6/keymap.c b/layouts/default/ortho_2x6/default_ortho_2x6/keymap.c new file mode 100644 index 000000000..1c8a6b7ef --- /dev/null +++ b/layouts/default/ortho_2x6/default_ortho_2x6/keymap.c | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | /* | ||
| 5 | * ┌───┬───┬───┬───┬───┬───┐ | ||
| 6 | * │ A │ B │ C │ D │ E │ F │ | ||
| 7 | * ├───┼───┼───┼───┼───┼───┤ | ||
| 8 | * │ G │ H │ I │ J │ K │ L │ | ||
| 9 | * └───┴───┴───┴───┴───┴───┘ | ||
| 10 | */ | ||
| 11 | [0] = LAYOUT_ortho_2x6( | ||
| 12 | KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, | ||
| 13 | KC_G, KC_H, KC_I, KC_J, KC_K, KC_L | ||
| 14 | ) | ||
| 15 | }; | ||
diff --git a/layouts/default/ortho_2x6/info.json b/layouts/default/ortho_2x6/info.json new file mode 100644 index 000000000..5a421ed90 --- /dev/null +++ b/layouts/default/ortho_2x6/info.json | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "2x6 ortholinear layout", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 6, | ||
| 6 | "height": 2, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ortho_2x6": { | ||
| 9 | "layout": [ | ||
| 10 | {"x":0, "y":0}, | ||
| 11 | {"x":1, "y":0}, | ||
| 12 | {"x":2, "y":0}, | ||
| 13 | {"x":3, "y":0}, | ||
| 14 | {"x":4, "y":0}, | ||
| 15 | {"x":5, "y":0}, | ||
| 16 | |||
| 17 | {"x":0, "y":1}, | ||
| 18 | {"x":1, "y":1}, | ||
| 19 | {"x":2, "y":1}, | ||
| 20 | {"x":3, "y":1}, | ||
| 21 | {"x":4, "y":1}, | ||
| 22 | {"x":5, "y":1} | ||
| 23 | ] | ||
| 24 | } | ||
| 25 | } | ||
| 26 | } | ||
diff --git a/layouts/default/ortho_2x6/layout.json b/layouts/default/ortho_2x6/layout.json new file mode 100644 index 000000000..ce609ee59 --- /dev/null +++ b/layouts/default/ortho_2x6/layout.json | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | ["","","","","",""], | ||
| 2 | ["","","","","",""] | ||
diff --git a/layouts/default/ortho_2x6/readme.md b/layouts/default/ortho_2x6/readme.md new file mode 100644 index 000000000..5e7c148a7 --- /dev/null +++ b/layouts/default/ortho_2x6/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_2x6 | ||
| 2 | |||
| 3 | LAYOUT_ortho_2x6 | ||
