mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-18 01:46:09 +00:00
Add ortho_3x3 community layout (#19210)
This commit is contained in:
parent
e0d0d81dfa
commit
2d45e5e4b4
5 changed files with 57 additions and 0 deletions
18
layouts/default/ortho_3x3/default_ortho_3x3/keymap.c
Normal file
18
layouts/default/ortho_3x3/default_ortho_3x3/keymap.c
Normal file
|
@ -0,0 +1,18 @@
|
|||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
/*
|
||||
* ┌───┬───┬───┐
|
||||
* │ A │ B │ C │
|
||||
* ├───┼───┼───┤
|
||||
* │ D │ E │ F │
|
||||
* ├───┼───┼───┤
|
||||
* │ G │ H │ I │
|
||||
* └───┴───┴───┘
|
||||
*/
|
||||
[0] = LAYOUT_ortho_3x3(
|
||||
KC_A, KC_B, KC_C,
|
||||
KC_D, KC_E, KC_F,
|
||||
KC_G, KC_H, KC_I
|
||||
)
|
||||
};
|
22
layouts/default/ortho_3x3/info.json
Normal file
22
layouts/default/ortho_3x3/info.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"keyboard_name": "3x3 ortholinear layout",
|
||||
"url": "",
|
||||
"maintainer": "qmk",
|
||||
"layouts": {
|
||||
"LAYOUT_ortho_3x3": {
|
||||
"layout": [
|
||||
{"x":0, "y":0},
|
||||
{"x":1, "y":0},
|
||||
{"x":2, "y":0},
|
||||
|
||||
{"x":0, "y":1},
|
||||
{"x":1, "y":1},
|
||||
{"x":2, "y":1},
|
||||
|
||||
{"x":0, "y":2},
|
||||
{"x":1, "y":2},
|
||||
{"x":2, "y":2}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
3
layouts/default/ortho_3x3/layout.json
Normal file
3
layouts/default/ortho_3x3/layout.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
["","",""],
|
||||
["","",""],
|
||||
["","",""]
|
3
layouts/default/ortho_3x3/readme.md
Normal file
3
layouts/default/ortho_3x3/readme.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# ortho_3x3
|
||||
|
||||
LAYOUT_ortho_3x3
|
|
@ -1059,6 +1059,17 @@ LAYOUT_ortho_2x6
|
|||
└───┴───┴───┴───┴───┴───┘
|
||||
```
|
||||
|
||||
```
|
||||
LAYOUT_ortho_3x3
|
||||
┌───┬───┬───┐
|
||||
│ │ │ │
|
||||
├───┼───┼───┤
|
||||
│ │ │ │
|
||||
├───┼───┼───┤
|
||||
│ │ │ │
|
||||
└───┴───┴───┘
|
||||
```
|
||||
|
||||
```
|
||||
LAYOUT_ortho_3x10
|
||||
┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
|
||||
|
|
Loading…
Reference in a new issue