diff options
author | QMK Bot <hello@qmk.fm> | 2021-07-20 00:30:40 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-07-20 00:30:40 +0000 |
commit | f9332747e324f4fd131c4251cbc4996c7e9eb0a3 (patch) | |
tree | 12b95ad3968d0479e60d6593766bc708ee9b61d5 /layouts/default/ortho_2x6 | |
parent | f493f560cc85585b336930ca551a44df10aab90c (diff) | |
parent | 7e698c71cd8b9d0cdef6c622cfdd88a13e2a6587 (diff) |
Merge remote-tracking branch 'origin/master' into develop
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 0000000000..1c8a6b7ef9 --- /dev/null +++ b/layouts/default/ortho_2x6/default_ortho_2x6/keymap.c @@ -0,0 +1,15 @@ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┬───┬───┬───┐ + * │ A │ B │ C │ D │ E │ F │ + * ├───┼───┼───┼───┼───┼───┤ + * │ G │ H │ I │ J │ K │ L │ + * └───┴───┴───┴───┴───┴───┘ + */ + [0] = LAYOUT_ortho_2x6( + KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, + KC_G, KC_H, KC_I, KC_J, KC_K, KC_L + ) +}; diff --git a/layouts/default/ortho_2x6/info.json b/layouts/default/ortho_2x6/info.json new file mode 100644 index 0000000000..5a421ed903 --- /dev/null +++ b/layouts/default/ortho_2x6/info.json @@ -0,0 +1,26 @@ +{ + "keyboard_name": "2x6 ortholinear layout", + "url": "", + "maintainer": "qmk", + "width": 6, + "height": 2, + "layouts": { + "LAYOUT_ortho_2x6": { + "layout": [ + {"x":0, "y":0}, + {"x":1, "y":0}, + {"x":2, "y":0}, + {"x":3, "y":0}, + {"x":4, "y":0}, + {"x":5, "y":0}, + + {"x":0, "y":1}, + {"x":1, "y":1}, + {"x":2, "y":1}, + {"x":3, "y":1}, + {"x":4, "y":1}, + {"x":5, "y":1} + ] + } + } +} diff --git a/layouts/default/ortho_2x6/layout.json b/layouts/default/ortho_2x6/layout.json new file mode 100644 index 0000000000..ce609ee590 --- /dev/null +++ b/layouts/default/ortho_2x6/layout.json @@ -0,0 +1,2 @@ +["","","","","",""], +["","","","","",""] diff --git a/layouts/default/ortho_2x6/readme.md b/layouts/default/ortho_2x6/readme.md new file mode 100644 index 0000000000..5e7c148a72 --- /dev/null +++ b/layouts/default/ortho_2x6/readme.md @@ -0,0 +1,3 @@ +# ortho_2x6 + + LAYOUT_ortho_2x6 |