diff options
39 files changed, 335 insertions, 19 deletions
diff --git a/keyboards/40percentclub/5x5/info.json b/keyboards/40percentclub/5x5/info.json index 1c1df8eda..1e7bac7a6 100644 --- a/keyboards/40percentclub/5x5/info.json +++ b/keyboards/40percentclub/5x5/info.json | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | { | 1 | { |
| 2 | "keyboard_name": "40percent.club 4x4", | 2 | "keyboard_name": "40percent.club 5x5", |
| 3 | "url": "", | 3 | "url": "", |
| 4 | "maintainer": "qmk", | 4 | "maintainer": "qmk", |
| 5 | "height": 4, | 5 | "height": 4, |
diff --git a/keyboards/40percentclub/6lit/rules.mk b/keyboards/40percentclub/6lit/rules.mk index 8d32d2c3f..7ff281ecc 100644 --- a/keyboards/40percentclub/6lit/rules.mk +++ b/keyboards/40percentclub/6lit/rules.mk | |||
| @@ -32,3 +32,5 @@ AUDIO_ENABLE = no # Audio output on port C6 | |||
| 32 | 32 | ||
| 33 | # Enable generic behavior for split boards | 33 | # Enable generic behavior for split boards |
| 34 | SPLIT_KEYBOARD = yes | 34 | SPLIT_KEYBOARD = yes |
| 35 | |||
| 36 | LAYOUTS = ortho_2x3 ortho_2x6 | ||
diff --git a/keyboards/40percentclub/sixpack/config.h b/keyboards/40percentclub/sixpack/config.h index db91ca7b8..2ec676018 100644 --- a/keyboards/40percentclub/sixpack/config.h +++ b/keyboards/40percentclub/sixpack/config.h | |||
| @@ -40,8 +40,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | 40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) |
| 41 | * | 41 | * |
| 42 | */ | 42 | */ |
| 43 | // #define MATRIX_ROW_PINS { B0 } // B0 equivalents the ground pin | ||
| 44 | // #define MATRIX_COL_PINS { E6, D7, C6, D4 } | ||
| 45 | #define DIRECT_PINS { \ | 43 | #define DIRECT_PINS { \ |
| 46 | { D4, C6, D7 }, \ | 44 | { D4, C6, D7 }, \ |
| 47 | { E6, B4, B5 } \ | 45 | { E6, B4, B5 } \ |
| @@ -56,6 +54,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 56 | #define BACKLIGHT_LEVELS 6 | 54 | #define BACKLIGHT_LEVELS 6 |
| 57 | #define BACKLIGHT_PINS { F4, F5 } // Top Row, Bottom Row | 55 | #define BACKLIGHT_PINS { F4, F5 } // Top Row, Bottom Row |
| 58 | 56 | ||
| 57 | /* LED Indicators */ | ||
| 58 | #define LED_PIN_ON_STATE 0 | ||
| 59 | #define LED_CAPS_LOCK_PIN B0 // RX Led | ||
| 60 | #define LED_NUM_LOCK_PIN D5 // TX Led | ||
| 61 | |||
| 59 | // #define RGB_DI_PIN B1 // PB1 on expansion connector | 62 | // #define RGB_DI_PIN B1 // PB1 on expansion connector |
| 60 | // #ifdef RGB_DI_PIN | 63 | // #ifdef RGB_DI_PIN |
| 61 | // #define RGBLED_NUM 16 | 64 | // #define RGBLED_NUM 16 |
diff --git a/keyboards/40percentclub/sixpack/info.json b/keyboards/40percentclub/sixpack/info.json index 3c78e26fb..0d85f0925 100644 --- a/keyboards/40percentclub/sixpack/info.json +++ b/keyboards/40percentclub/sixpack/info.json | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | { | 1 | { |
| 2 | "keyboard_name": "sixpack", | 2 | "keyboard_name": "Six Pack", |
| 3 | "url": "https://www.40percent.club/2017/05/six-pack-11.html", | 3 | "url": "https://www.40percent.club/2017/05/six-pack-11.html", |
| 4 | "maintainer": "qmk", | 4 | "maintainer": "qmk", |
| 5 | "width": 3, | 5 | "width": 3, |
diff --git a/keyboards/40percentclub/sixpack/keymaps/via/keymap.c b/keyboards/40percentclub/sixpack/keymaps/via/keymap.c index f3268a22a..e2eaaa1d0 100644 --- a/keyboards/40percentclub/sixpack/keymaps/via/keymap.c +++ b/keyboards/40percentclub/sixpack/keymaps/via/keymap.c | |||
| @@ -33,9 +33,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS), | 33 | KC_TRNS, KC_TRNS, KC_TRNS), |
| 34 | [3] = LAYOUT_ortho_2x3(KC_TRNS, KC_TRNS, KC_TRNS, | 34 | [3] = LAYOUT_ortho_2x3(KC_TRNS, KC_TRNS, KC_TRNS, |
| 35 | KC_TRNS, KC_TRNS, KC_TRNS), | 35 | KC_TRNS, KC_TRNS, KC_TRNS), |
| 36 | [4] = LAYOUT_ortho_2x3(KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 37 | KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 38 | [5] = LAYOUT_ortho_2x3(KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 39 | KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 40 | 36 | ||
| 41 | }; | 37 | }; |
diff --git a/keyboards/40percentclub/sixpack/rules.mk b/keyboards/40percentclub/sixpack/rules.mk index 9d7d9a2cf..84e3ea5ea 100644 --- a/keyboards/40percentclub/sixpack/rules.mk +++ b/keyboards/40percentclub/sixpack/rules.mk | |||
| @@ -20,3 +20,5 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
| 22 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
| 23 | |||
| 24 | LAYOUTS = ortho_2x3 | ||
diff --git a/keyboards/boardsource/holiday/spooky/keymaps/default/keymap.c b/keyboards/boardsource/holiday/spooky/keymaps/default/keymap.c index b4fcfc1bc..63fbb1b94 100644 --- a/keyboards/boardsource/holiday/spooky/keymaps/default/keymap.c +++ b/keyboards/boardsource/holiday/spooky/keymaps/default/keymap.c | |||
| @@ -24,7 +24,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 24 | /* Base */ | 24 | /* Base */ |
| 25 | [_BASE] = LAYOUT_ortho_2x3( | 25 | [_BASE] = LAYOUT_ortho_2x3( |
| 26 | KC_F1, KC_F2, KC_F3, | 26 | KC_F1, KC_F2, KC_F3, |
| 27 | KC_F4, KC_F5,KC_F6 | 27 | KC_F4, KC_F5, KC_F6 |
| 28 | ), | 28 | ), |
| 29 | }; | 29 | }; |
| 30 | |||
diff --git a/keyboards/boardsource/holiday/spooky/rules.mk b/keyboards/boardsource/holiday/spooky/rules.mk index d23e95512..2fd07c241 100644 --- a/keyboards/boardsource/holiday/spooky/rules.mk +++ b/keyboards/boardsource/holiday/spooky/rules.mk | |||
| @@ -20,3 +20,5 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
| 22 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
| 23 | |||
| 24 | LAYOUTS = ortho_2x3 | ||
diff --git a/keyboards/handwired/stream_cheap/2x3/readme.md b/keyboards/handwired/stream_cheap/2x3/readme.md new file mode 100644 index 000000000..69ce022f6 --- /dev/null +++ b/keyboards/handwired/stream_cheap/2x3/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # Stream Cheap | ||
| 2 | |||
| 3 | An ortholinear macropad, 2x3 configuration. | ||
diff --git a/keyboards/handwired/stream_cheap/2x3/rules.mk b/keyboards/handwired/stream_cheap/2x3/rules.mk index e4ffb10d0..2d79fa435 100644 --- a/keyboards/handwired/stream_cheap/2x3/rules.mk +++ b/keyboards/handwired/stream_cheap/2x3/rules.mk | |||
| @@ -20,3 +20,5 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
| 22 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
| 23 | |||
| 24 | LAYOUTS = ortho_2x3 | ||
diff --git a/keyboards/handwired/stream_cheap/2x4/readme.md b/keyboards/handwired/stream_cheap/2x4/readme.md new file mode 100644 index 000000000..d15fcaeaf --- /dev/null +++ b/keyboards/handwired/stream_cheap/2x4/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # Stream Cheap | ||
| 2 | |||
| 3 | An ortholinear macropad, 2x4 configuration. | ||
diff --git a/keyboards/handwired/stream_cheap/2x5/readme.md b/keyboards/handwired/stream_cheap/2x5/readme.md new file mode 100644 index 000000000..99aab61e4 --- /dev/null +++ b/keyboards/handwired/stream_cheap/2x5/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # Stream Cheap | ||
| 2 | |||
| 3 | An ortholinear macropad, 2x5 configuration. | ||
diff --git a/keyboards/sixkeyboard/info.json b/keyboards/sixkeyboard/info.json index 55239fc6c..17815afa1 100644 --- a/keyboards/sixkeyboard/info.json +++ b/keyboards/sixkeyboard/info.json | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | "width": 3, | 5 | "width": 3, |
| 6 | "height": 2, | 6 | "height": 2, |
| 7 | "layouts": { | 7 | "layouts": { |
| 8 | "LAYOUT": { | 8 | "LAYOUT_ortho_2x3": { |
| 9 | "layout": [{"label":"k00", "x":0, "y":0}, {"label":"k01", "x":1, "y":0}, {"label":"k02", "x":2, "y":0}, {"label":"k10", "x":0, "y":1}, {"label":"k11", "x":1, "y":1}, {"label":"k12", "x":2, "y":1}] | 9 | "layout": [{"label":"k00", "x":0, "y":0}, {"label":"k01", "x":1, "y":0}, {"label":"k02", "x":2, "y":0}, {"label":"k10", "x":0, "y":1}, {"label":"k11", "x":1, "y":1}, {"label":"k12", "x":2, "y":1}] |
| 10 | } | 10 | } |
| 11 | } | 11 | } |
diff --git a/keyboards/sixkeyboard/keymaps/default/keymap.c b/keyboards/sixkeyboard/keymaps/default/keymap.c index 3b39892a9..0c9b51935 100644 --- a/keyboards/sixkeyboard/keymaps/default/keymap.c +++ b/keyboards/sixkeyboard/keymaps/default/keymap.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #include "matrix.h" | 3 | #include "matrix.h" |
| 4 | 4 | ||
| 5 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 5 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 6 | [0] = LAYOUT( | 6 | [0] = LAYOUT_ortho_2x3( |
| 7 | KC_A, KC_B, KC_C, \ | 7 | KC_A, KC_B, KC_C, \ |
| 8 | KC_D, KC_E, KC_F \ | 8 | KC_D, KC_E, KC_F \ |
| 9 | ) | 9 | ) |
diff --git a/keyboards/sixkeyboard/keymaps/via/keymap.c b/keyboards/sixkeyboard/keymaps/via/keymap.c index fed341595..39282b9b5 100644 --- a/keyboards/sixkeyboard/keymaps/via/keymap.c +++ b/keyboards/sixkeyboard/keymaps/via/keymap.c | |||
| @@ -17,22 +17,22 @@ | |||
| 17 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
| 18 | 18 | ||
| 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 20 | [0] = LAYOUT( | 20 | [0] = LAYOUT_ortho_2x3( |
| 21 | KC_A, KC_B, KC_C, | 21 | KC_A, KC_B, KC_C, |
| 22 | KC_D, KC_E, KC_F | 22 | KC_D, KC_E, KC_F |
| 23 | ), | 23 | ), |
| 24 | 24 | ||
| 25 | [1] = LAYOUT( | 25 | [1] = LAYOUT_ortho_2x3( |
| 26 | KC_TRNS, KC_TRNS, KC_TRNS, | 26 | KC_TRNS, KC_TRNS, KC_TRNS, |
| 27 | KC_TRNS, KC_TRNS, KC_TRNS | 27 | KC_TRNS, KC_TRNS, KC_TRNS |
| 28 | ), | 28 | ), |
| 29 | 29 | ||
| 30 | [2] = LAYOUT( | 30 | [2] = LAYOUT_ortho_2x3( |
| 31 | KC_TRNS, KC_TRNS, KC_TRNS, | 31 | KC_TRNS, KC_TRNS, KC_TRNS, |
| 32 | KC_TRNS, KC_TRNS, KC_TRNS | 32 | KC_TRNS, KC_TRNS, KC_TRNS |
| 33 | ), | 33 | ), |
| 34 | 34 | ||
| 35 | [3] = LAYOUT( | 35 | [3] = LAYOUT_ortho_2x3( |
| 36 | KC_TRNS, KC_TRNS, KC_TRNS, | 36 | KC_TRNS, KC_TRNS, KC_TRNS, |
| 37 | KC_TRNS, KC_TRNS, KC_TRNS | 37 | KC_TRNS, KC_TRNS, KC_TRNS |
| 38 | ) | 38 | ) |
diff --git a/keyboards/sixkeyboard/rules.mk b/keyboards/sixkeyboard/rules.mk index 889ea2fd1..0e0239af0 100644 --- a/keyboards/sixkeyboard/rules.mk +++ b/keyboards/sixkeyboard/rules.mk | |||
| @@ -28,4 +28,5 @@ UNICODE_ENABLE = no # Unicode | |||
| 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 29 | CUSTOM_MATRIX = yes | 29 | CUSTOM_MATRIX = yes |
| 30 | 30 | ||
| 31 | SRC = matrix.c | 31 | SRC += matrix.c |
| 32 | LAYOUTS = ortho_2x3 | ||
diff --git a/keyboards/sixkeyboard/sixkeyboard.h b/keyboards/sixkeyboard/sixkeyboard.h index e0eb896ce..353e2a78c 100644 --- a/keyboards/sixkeyboard/sixkeyboard.h +++ b/keyboards/sixkeyboard/sixkeyboard.h | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | * │ D │ E │ F │ | 22 | * │ D │ E │ F │ |
| 23 | * └───┴───┴───┘ | 23 | * └───┴───┴───┘ |
| 24 | */ | 24 | */ |
| 25 | #define LAYOUT( \ | 25 | #define LAYOUT_ortho_2x3( \ |
| 26 | k00, k01, k02, \ | 26 | k00, k01, k02, \ |
| 27 | k10, k11, k12 \ | 27 | k10, k11, k12 \ |
| 28 | ) { \ | 28 | ) { \ |
diff --git a/layouts/community/ortho_1x4/readme.md b/layouts/community/ortho_1x4/readme.md new file mode 100644 index 000000000..6ef30dd0a --- /dev/null +++ b/layouts/community/ortho_1x4/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_1x4 | ||
| 2 | |||
| 3 | LAYOUT_ortho_1x4 | ||
diff --git a/layouts/community/ortho_2x3/layout.json b/layouts/community/ortho_2x3/layout.json new file mode 100644 index 000000000..255792193 --- /dev/null +++ b/layouts/community/ortho_2x3/layout.json | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | ["","",""], | ||
| 2 | ["","",""] | ||
diff --git a/layouts/community/ortho_2x3/readme.md b/layouts/community/ortho_2x3/readme.md new file mode 100644 index 000000000..47ae0f686 --- /dev/null +++ b/layouts/community/ortho_2x3/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_2x3 | ||
| 2 | |||
| 3 | LAYOUT_ortho_2x3 | ||
diff --git a/layouts/community/ortho_2x6/layout.json b/layouts/community/ortho_2x6/layout.json new file mode 100644 index 000000000..ce609ee59 --- /dev/null +++ b/layouts/community/ortho_2x6/layout.json | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | ["","","","","",""], | ||
| 2 | ["","","","","",""] | ||
diff --git a/layouts/community/ortho_2x6/readme.md b/layouts/community/ortho_2x6/readme.md new file mode 100644 index 000000000..5e7c148a7 --- /dev/null +++ b/layouts/community/ortho_2x6/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_2x6 | ||
| 2 | |||
| 3 | LAYOUT_ortho_2x6 | ||
diff --git a/layouts/community/ortho_5x5/layout.json b/layouts/community/ortho_5x5/layout.json index ab4eef8e1..71f77df6e 100644 --- a/layouts/community/ortho_5x5/layout.json +++ b/layouts/community/ortho_5x5/layout.json | |||
| @@ -1 +1,5 @@ | |||
| 1 | ["","","","",""],["","","","",""],["","","","",""],["","","","",""],["","","","",""] | 1 | ["","","","",""], |
| 2 | ["","","","",""], | ||
| 3 | ["","","","",""], | ||
| 4 | ["","","","",""], | ||
| 5 | ["","","","",""] | ||
diff --git a/layouts/default/ortho_2x3/default_ortho_2x3/keymap.c b/layouts/default/ortho_2x3/default_ortho_2x3/keymap.c new file mode 100644 index 000000000..a38146d02 --- /dev/null +++ b/layouts/default/ortho_2x3/default_ortho_2x3/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 │ | ||
| 7 | * ├───┼───┼───┤ | ||
| 8 | * │ D │ E │ F │ | ||
| 9 | * └───┴───┴───┘ | ||
| 10 | */ | ||
| 11 | [0] = LAYOUT_ortho_2x3( | ||
| 12 | KC_A, KC_B, KC_C, | ||
| 13 | KC_D, KC_E, KC_F | ||
| 14 | ) | ||
| 15 | }; | ||
diff --git a/layouts/default/ortho_2x3/info.json b/layouts/default/ortho_2x3/info.json new file mode 100644 index 000000000..d39e5cc8d --- /dev/null +++ b/layouts/default/ortho_2x3/info.json | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "2x3 ortholinear layout", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 3, | ||
| 6 | "height": 2, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ortho_2x3": { | ||
| 9 | "layout": [ | ||
| 10 | {"x":0, "y":0}, | ||
| 11 | {"x":1, "y":0}, | ||
| 12 | {"x":2, "y":0}, | ||
| 13 | |||
| 14 | {"x":0, "y":1}, | ||
| 15 | {"x":1, "y":1}, | ||
| 16 | {"x":2, "y":1} | ||
| 17 | ] | ||
| 18 | } | ||
| 19 | } | ||
| 20 | } | ||
diff --git a/layouts/default/ortho_2x3/layout.json b/layouts/default/ortho_2x3/layout.json new file mode 100644 index 000000000..255792193 --- /dev/null +++ b/layouts/default/ortho_2x3/layout.json | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | ["","",""], | ||
| 2 | ["","",""] | ||
diff --git a/layouts/default/ortho_2x3/readme.md b/layouts/default/ortho_2x3/readme.md new file mode 100644 index 000000000..47ae0f686 --- /dev/null +++ b/layouts/default/ortho_2x3/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_2x3 | ||
| 2 | |||
| 3 | LAYOUT_ortho_2x3 | ||
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 | ||
diff --git a/layouts/default/ortho_5x10/default_ortho_5x10/keymap.c b/layouts/default/ortho_5x10/default_ortho_5x10/keymap.c new file mode 100644 index 000000000..1f935473e --- /dev/null +++ b/layouts/default/ortho_5x10/default_ortho_5x10/keymap.c | |||
| @@ -0,0 +1,24 @@ | |||
| 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 │ G │ H │ I │ J │ | ||
| 7 | * ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 8 | * │ A │ B │ C │ D │ E │ F │ G │ H │ I │ J │ | ||
| 9 | * ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 10 | * │ A │ B │ C │ D │ E │ F │ G │ H │ I │ J │ | ||
| 11 | * ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 12 | * │ A │ B │ C │ D │ E │ F │ G │ H │ I │ J │ | ||
| 13 | * ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 14 | * │ A │ B │ C │ D │ E │ F │ G │ H │ I │ J │ | ||
| 15 | * └───┴───┴───┴───┴───┴───┴───┴───┴───┴───┘ | ||
| 16 | */ | ||
| 17 | [0] = LAYOUT_ortho_5x10( | ||
| 18 | KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, | ||
| 19 | KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, | ||
| 20 | KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, | ||
| 21 | KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J, | ||
| 22 | KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_I, KC_J | ||
| 23 | ) | ||
| 24 | }; | ||
diff --git a/layouts/default/ortho_5x10/info.json b/layouts/default/ortho_5x10/info.json new file mode 100644 index 000000000..bd79e6ad9 --- /dev/null +++ b/layouts/default/ortho_5x10/info.json | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "5x10 ortholinear layout", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 10, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ortho_5x10": { | ||
| 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 | {"x":6, "y":0}, | ||
| 17 | {"x":7, "y":0}, | ||
| 18 | {"x":8, "y":0}, | ||
| 19 | {"x":9, "y":0}, | ||
| 20 | |||
| 21 | {"x":0, "y":1}, | ||
| 22 | {"x":1, "y":1}, | ||
| 23 | {"x":2, "y":1}, | ||
| 24 | {"x":3, "y":1}, | ||
| 25 | {"x":4, "y":1}, | ||
| 26 | {"x":5, "y":1}, | ||
| 27 | {"x":6, "y":1}, | ||
| 28 | {"x":7, "y":1}, | ||
| 29 | {"x":8, "y":1}, | ||
| 30 | {"x":9, "y":1}, | ||
| 31 | |||
| 32 | {"x":0, "y":2}, | ||
| 33 | {"x":1, "y":2}, | ||
| 34 | {"x":2, "y":2}, | ||
| 35 | {"x":3, "y":2}, | ||
| 36 | {"x":4, "y":2}, | ||
| 37 | {"x":5, "y":2}, | ||
| 38 | {"x":6, "y":2}, | ||
| 39 | {"x":7, "y":2}, | ||
| 40 | {"x":8, "y":2}, | ||
| 41 | {"x":9, "y":2}, | ||
| 42 | |||
| 43 | {"x":0, "y":3}, | ||
| 44 | {"x":1, "y":3}, | ||
| 45 | {"x":2, "y":3}, | ||
| 46 | {"x":3, "y":3}, | ||
| 47 | {"x":4, "y":3}, | ||
| 48 | {"x":5, "y":3}, | ||
| 49 | {"x":6, "y":3}, | ||
| 50 | {"x":7, "y":3}, | ||
| 51 | {"x":8, "y":3}, | ||
| 52 | {"x":9, "y":3}, | ||
| 53 | |||
| 54 | {"x":0, "y":4}, | ||
| 55 | {"x":1, "y":4}, | ||
| 56 | {"x":2, "y":4}, | ||
| 57 | {"x":3, "y":4}, | ||
| 58 | {"x":4, "y":4}, | ||
| 59 | {"x":5, "y":4}, | ||
| 60 | {"x":6, "y":4}, | ||
| 61 | {"x":7, "y":4}, | ||
| 62 | {"x":8, "y":4}, | ||
| 63 | {"x":9, "y":4}, | ||
| 64 | ] | ||
| 65 | } | ||
| 66 | } | ||
| 67 | } | ||
diff --git a/layouts/default/ortho_5x10/layout.json b/layouts/default/ortho_5x10/layout.json new file mode 100644 index 000000000..79dde3e74 --- /dev/null +++ b/layouts/default/ortho_5x10/layout.json | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | [{a:7},"","","","","","","","","",""], | ||
| 2 | ["","","","","","","","","",""], | ||
| 3 | ["","","","","","","","","",""], | ||
| 4 | ["","","","","","","","","",""], | ||
| 5 | ["","","","","","","","","",""] | ||
diff --git a/layouts/default/ortho_5x10/readme.md b/layouts/default/ortho_5x10/readme.md new file mode 100644 index 000000000..5c94f8eca --- /dev/null +++ b/layouts/default/ortho_5x10/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_5x10 | ||
| 2 | |||
| 3 | LAYOUT_ortho_5x10 | ||
diff --git a/layouts/default/ortho_5x5/info.json b/layouts/default/ortho_5x5/info.json new file mode 100644 index 000000000..ecc41d943 --- /dev/null +++ b/layouts/default/ortho_5x5/info.json | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "5x5 ortholinear layout", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "qmk", | ||
| 5 | "width": 5, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ortho_5x5": { | ||
| 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 | |||
| 16 | {"x":0, "y":1}, | ||
| 17 | {"x":1, "y":1}, | ||
| 18 | {"x":2, "y":1}, | ||
| 19 | {"x":3, "y":1}, | ||
| 20 | {"x":4, "y":1}, | ||
| 21 | |||
| 22 | {"x":0, "y":2}, | ||
| 23 | {"x":1, "y":2}, | ||
| 24 | {"x":2, "y":2}, | ||
| 25 | {"x":3, "y":2}, | ||
| 26 | {"x":4, "y":2}, | ||
| 27 | |||
| 28 | {"x":0, "y":3}, | ||
| 29 | {"x":1, "y":3}, | ||
| 30 | {"x":2, "y":3}, | ||
| 31 | {"x":3, "y":3}, | ||
| 32 | {"x":4, "y":3}, | ||
| 33 | |||
| 34 | {"x":0, "y":4}, | ||
| 35 | {"x":1, "y":4}, | ||
| 36 | {"x":2, "y":4}, | ||
| 37 | {"x":3, "y":4}, | ||
| 38 | {"x":4, "y":4} | ||
| 39 | ] | ||
| 40 | } | ||
| 41 | } | ||
| 42 | } | ||
diff --git a/layouts/default/ortho_5x5/layout.json b/layouts/default/ortho_5x5/layout.json new file mode 100644 index 000000000..71f77df6e --- /dev/null +++ b/layouts/default/ortho_5x5/layout.json | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | ["","","","",""], | ||
| 2 | ["","","","",""], | ||
| 3 | ["","","","",""], | ||
| 4 | ["","","","",""], | ||
| 5 | ["","","","",""] | ||
diff --git a/layouts/default/ortho_5x5/readme.md b/layouts/default/ortho_5x5/readme.md new file mode 100644 index 000000000..3dd75765d --- /dev/null +++ b/layouts/default/ortho_5x5/readme.md | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | # ortho_5x5 | ||
| 2 | |||
| 3 | LAYOUT_ortho_5x5 \ No newline at end of file | ||
diff --git a/layouts/default/readme.md b/layouts/default/readme.md index eca77e693..1acc16d94 100644 --- a/layouts/default/readme.md +++ b/layouts/default/readme.md | |||
| @@ -661,6 +661,24 @@ LAYOUT_numpad_6x4 | |||
| 661 | ### Ortholinear Layouts | 661 | ### Ortholinear Layouts |
| 662 | 662 | ||
| 663 | ``` | 663 | ``` |
| 664 | LAYOUT_ortho_2x3 | ||
| 665 | ┌───┬───┬───┐ | ||
| 666 | │ │ │ │ | ||
| 667 | ├───┼───┼───┤ | ||
| 668 | │ │ │ │ | ||
| 669 | └───┴───┴───┘ | ||
| 670 | ``` | ||
| 671 | |||
| 672 | ``` | ||
| 673 | LAYOUT_ortho_2x6 | ||
| 674 | ┌───┬───┬───┬───┬───┬───┐ | ||
| 675 | │ │ │ │ │ │ │ | ||
| 676 | ├───┼───┼───┼───┼───┼───┤ | ||
| 677 | │ │ │ │ │ │ │ | ||
| 678 | └───┴───┴───┴───┴───┴───┘ | ||
| 679 | ``` | ||
| 680 | |||
| 681 | ``` | ||
| 664 | LAYOUT_ortho_3x10 | 682 | LAYOUT_ortho_3x10 |
| 665 | ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | 683 | ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ |
| 666 | │ │ │ │ │ │ │ │ │ │ │ | 684 | │ │ │ │ │ │ │ │ │ │ │ |
| @@ -711,6 +729,36 @@ LAYOUT_ortho_4x4 | |||
| 711 | ``` | 729 | ``` |
| 712 | 730 | ||
| 713 | ``` | 731 | ``` |
| 732 | LAYOUT_ortho_5x5 | ||
| 733 | ┌───┬───┬───┬───┬───┐ | ||
| 734 | │ │ │ │ │ │ | ||
| 735 | ├───┼───┼───┼───┼───┤ | ||
| 736 | │ │ │ │ │ │ | ||
| 737 | ├───┼───┼───┼───┼───┤ | ||
| 738 | │ │ │ │ │ │ | ||
| 739 | ├───┼───┼───┼───┼───┤ | ||
| 740 | │ │ │ │ │ │ | ||
| 741 | ├───┼───┼───┼───┼───┤ | ||
| 742 | │ │ │ │ │ │ | ||
| 743 | └───┴───┴───┴───┴───┘ | ||
| 744 | ``` | ||
| 745 | |||
| 746 | ``` | ||
| 747 | LAYOUT_ortho_5x10 | ||
| 748 | ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | ||
| 749 | │ │ │ │ │ │ │ │ │ │ │ | ||
| 750 | ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 751 | │ │ │ │ │ │ │ │ │ │ │ | ||
| 752 | ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 753 | │ │ │ │ │ │ │ │ │ │ │ | ||
| 754 | ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 755 | │ │ │ │ │ │ │ │ │ │ │ | ||
| 756 | ├───┼───┼───┼───┼───┼───┼───┼───┼───┼───┤ | ||
| 757 | │ │ │ │ │ │ │ │ │ │ │ | ||
| 758 | └───┴───┴───┴───┴───┴───┴───┴───┴───┴───┘ | ||
| 759 | ``` | ||
| 760 | |||
| 761 | ``` | ||
| 714 | LAYOUT_ortho_5x12 | 762 | LAYOUT_ortho_5x12 |
| 715 | ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | 763 | ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ |
| 716 | │ │ │ │ │ │ │ │ │ │ │ │ │ | 764 | │ │ │ │ │ │ │ │ │ │ │ │ │ |
