forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Keyboard] Corrected layout for np24 by YMDK (qmk#14096)
Co-authored-by: Drashna Jaelre <[email protected]> Co-authored-by: Ryan <[email protected]>
- Loading branch information
1 parent
3e71785
commit 933381e
Showing
4 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
/* | ||
* ┌───┬───┬───┬───┬───┬───┐ | ||
* │Tab│ Q │ W │ E │ R │ T │ | ||
* ├───┼───┼───┼───┼───┼───┤ | ||
* │Bsp│ A │ S │ D │ F │ G │ | ||
* ├───┼───┼───┼───┼───┼───┤ | ||
* │Sft│ Z │ X │ C │ V │ B │ | ||
* ├───┼───┼───┼───┼───┼───┤ | ||
* │Ctl│App│GUI│Alt│Spc│Spc│ | ||
* └───┴───┴───┴───┴───┴───┘ | ||
*/ | ||
[0] = LAYOUT_ortho_4x6( | ||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, | ||
KC_BKSP, KC_A, KC_S, KC_D, KC_F, KC_G, | ||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, | ||
KC_LCTL, KC_MENU, KC_LGUI, KC_LALT, KC_SPC, KC_SPC | ||
) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"keyboard_name": "4x6 ortholinear layout", | ||
"url": "", | ||
"maintainer": "qmk", | ||
"width": 4, | ||
"height": 4, | ||
"layouts": { | ||
"LAYOUT_ortho_4x6": { | ||
"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}, | ||
|
||
{"x":0, "y":2}, | ||
{"x":1, "y":2}, | ||
{"x":2, "y":2}, | ||
{"x":3, "y":2}, | ||
{"x":4, "y":2}, | ||
{"x":5, "y":2}, | ||
|
||
{"x":0, "y":3}, | ||
{"x":1, "y":3}, | ||
{"x":2, "y":3}, | ||
{"x":3, "y":3}, | ||
{"x":4, "y":3}, | ||
{"x":5, "y":3} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[{a:7},"","","","","",""], | ||
["","","","","",""], | ||
["","","","","",""], | ||
["","","","","",""] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# ortho_4x6 | ||
|
||
LAYOUT_ortho_4x6 |