Skip to content

Commit

Permalink
SapuSeven MacroPad12: rename LAYOUT to LAYOUT_ortho_3x4 (qmk#22081)
Browse files Browse the repository at this point in the history
  • Loading branch information
noroadsleft authored Sep 19, 2023
1 parent 8c92c0a commit 2742935
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion keyboards/sapuseven/macropad12/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@
"vid": "0x1209",
"pid": "0x7337"
},
"layout_aliases": {
"LAYOUT": "LAYOUT_ortho_3x4"
},
"layouts": {
"LAYOUT": {
"LAYOUT_ortho_3x4": {
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0},
{"matrix": [0, 1], "x": 1, "y": 0},
Expand Down
2 changes: 1 addition & 1 deletion keyboards/sapuseven/macropad12/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
[0] = LAYOUT_ortho_3x4(
KC_1, KC_2, KC_3, KC_PLUS,
KC_4, KC_5, KC_6, KC_MINUS,
KC_7, KC_8, KC_9, KC_0
Expand Down
8 changes: 4 additions & 4 deletions keyboards/sapuseven/macropad12/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@
#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
[0] = LAYOUT_ortho_3x4(
KC_1, KC_2, KC_3, KC_PLUS,
KC_4, KC_5, KC_6, KC_MINUS,
KC_7, KC_8, KC_9, KC_0
),
[1] = LAYOUT(
[1] = LAYOUT_ortho_3x4(
KC_F1, KC_F2, KC_F3, KC_F4,
KC_F5, KC_F6, KC_F7, KC_F8,
KC_F9, KC_F10, KC_F11, KC_F12
),
[2] = LAYOUT(
[2] = LAYOUT_ortho_3x4(
KC_F13, KC_F14, KC_F15, KC_F16,
KC_F17, KC_F18, KC_F19, KC_F20,
KC_F21, KC_F22, KC_F23, KC_F24
),
[3] = LAYOUT(
[3] = LAYOUT_ortho_3x4(
KC_NO, KC_NO, KC_NO, KC_NO,
KC_NO, KC_NO, KC_NO, KC_NO,
KC_NO, KC_NO, KC_NO, KC_NO
Expand Down

0 comments on commit 2742935

Please sign in to comment.