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.
handwired/arrow_pad Refactor and Configurator support (qmk#4498)
* handwired/arrow_pad: layout macro and keymap refactor - Layout macros moved from the keymaps to arrow_pad.h. - LAYOUT_pad21 refactored to only accept keys that are physical present (no KC_NO entries required in keymap) - Keymaps now use #include QMK_KEYBOARD_H - Keymaps refactored to use process_record_user function (from action_get_macro) * handwired/arrow_pad: Readme cleanup Fixed the make commands and updated the layout macro. * handwired/arrow_pad: Configurator support
- Loading branch information
1 parent
a31a2f6
commit 3626a4a
Showing
6 changed files
with
265 additions
and
296 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
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,62 @@ | ||
{ | ||
"keyboard_name": "arrow_pad", | ||
"url": "", | ||
"maintainer": "qmk", | ||
"width": 4, | ||
"height": 6, | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"label":"KM_ESC", "x":0, "y":0}, | ||
{"label":"KM_TAB", "x":1, "y":0}, | ||
{"label":"KM_BSL", "x":2, "y":0}, | ||
{"label":"KM_ARR", "x":3, "y":0}, | ||
{"label":"KM_NUM", "x":0, "y":1}, | ||
{"label":"KM_FSL", "x":1, "y":1}, | ||
{"label":"KM_AST", "x":2, "y":1}, | ||
{"label":"KM_MIN", "x":3, "y":1}, | ||
{"label":"KM___7", "x":0, "y":2}, | ||
{"label":"KM___8", "x":1, "y":2}, | ||
{"label":"KM___9", "x":2, "y":2}, | ||
{"label":"KM_EQU", "x":3, "y":2}, | ||
{"label":"KM___4", "x":0, "y":3}, | ||
{"label":"KM___5", "x":1, "y":3}, | ||
{"label":"KM___6", "x":2, "y":3}, | ||
{"label":"KM_PLS", "x":3, "y":3}, | ||
{"label":"KM___1", "x":0, "y":4}, | ||
{"label":"KM___2", "x":1, "y":4}, | ||
{"label":"KM___3", "x":2, "y":4}, | ||
{"label":"___ENT", "x":3, "y":4}, | ||
{"label":"KM___0", "x":0, "y":5}, | ||
{"label":"_____0", "x":1, "y":5}, | ||
{"label":"KM_DOT", "x":2, "y":5}, | ||
{"label":"KM_ENT", "x":3, "y":5} | ||
] | ||
}, | ||
"LAYOUT_pad21": { | ||
"layout": [ | ||
{"label":"KM_ESC", "x":0, "y":0}, | ||
{"label":"KM_TAB", "x":1, "y":0}, | ||
{"label":"KM_BSL", "x":2, "y":0}, | ||
{"label":"KM_ARR", "x":3, "y":0}, | ||
{"label":"KM_NUM", "x":0, "y":1}, | ||
{"label":"KM_FSL", "x":1, "y":1}, | ||
{"label":"KM_AST", "x":2, "y":1}, | ||
{"label":"KM_MIN", "x":3, "y":1}, | ||
{"label":"KM___7", "x":0, "y":2}, | ||
{"label":"KM___8", "x":1, "y":2}, | ||
{"label":"KM___9", "x":2, "y":2}, | ||
{"label":"KM___4", "x":0, "y":3}, | ||
{"label":"KM___5", "x":1, "y":3}, | ||
{"label":"KM___6", "x":2, "y":3}, | ||
{"label":"KM_PLS", "x":3, "y":2, "h":2}, | ||
{"label":"KM___1", "x":0, "y":4}, | ||
{"label":"KM___2", "x":1, "y":4}, | ||
{"label":"KM___3", "x":2, "y":4}, | ||
{"label":"KM___0", "x":0, "y":5, "w":2}, | ||
{"label":"KM_DOT", "x":2, "y":5}, | ||
{"label":"KM_ENT", "x":3, "y":4, "h":2} | ||
] | ||
} | ||
} | ||
} |
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
Oops, something went wrong.