~ruther/qmk_firmware

b2c8e59cc1b5f43ae3e9e030b7349cb1ac4c6264 — QMK Bot 2 years ago 891734e + 2d45e5e
Merge remote-tracking branch 'origin/master' into develop
A layouts/default/ortho_3x3/default_ortho_3x3/keymap.c => layouts/default/ortho_3x3/default_ortho_3x3/keymap.c +18 -0
@@ 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
    )
};

A layouts/default/ortho_3x3/info.json => layouts/default/ortho_3x3/info.json +22 -0
@@ 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}
            ]
        }
    }
}

A layouts/default/ortho_3x3/layout.json => layouts/default/ortho_3x3/layout.json +3 -0
@@ 0,0 1,3 @@
["","",""],
["","",""],
["","",""]

A layouts/default/ortho_3x3/readme.md => layouts/default/ortho_3x3/readme.md +3 -0
@@ 0,0 1,3 @@
# ortho_3x3

    LAYOUT_ortho_3x3

M layouts/default/readme.md => layouts/default/readme.md +11 -0
@@ 1060,6 1060,17 @@ LAYOUT_ortho_2x6
```

```
LAYOUT_ortho_3x3
┌───┬───┬───┐
│   │   │   │
├───┼───┼───┤
│   │   │   │
├───┼───┼───┤
│   │   │   │
└───┴───┴───┘
```

```
LAYOUT_ortho_3x10
┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
│   │   │   │   │   │   │   │   │   │   │