-
-
Notifications
You must be signed in to change notification settings - Fork 40k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add numpad llayout to ai03/soyuz & personal keymap (#10030)
* ai03 Soyuz ## Description @ai03-2725 Soyuz: 1. Update `soyuz.h` (Add `LAYOUT_5x4`) 2. Added `keymap.c` 3. Added `readme.md` * Update readme.md * Update readme.md * Update keymap.c * Update keymap.c * Update keymap.c * Update keymap.c * Update soyuz.h Co-authored-by: Joel Challis <[email protected]> * Update keyboards/ai03/soyuz/soyuz.h Co-authored-by: Joel Challis <[email protected]> * Update keyboards/ai03/soyuz/keymaps/mrsendyyk/keymap.c Co-authored-by: Joel Challis <[email protected]> * Update keyboards/ai03/soyuz/keymaps/mrsendyyk/keymap.c Co-authored-by: Joel Challis <[email protected]> * Update rules.mk * Update keymap.c * Update keymap.c * Update keymap.c * Update readme.md * Update rules.mk * Update soyuz.h * Update soyuz.h * Update * Rename readme.md to README.md * Update keymap.c * Rename README.md to readme.md Co-authored-by: Joel Challis <[email protected]>
- Loading branch information
Showing
4 changed files
with
78 additions
and
3 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,24 @@ | ||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
|
||
/*[0] | ||
*┌───┬───┬───┬───┐ | ||
*│N L│/ │* │- │ | ||
*├───┼───┼───┼───┤ | ||
*│7 │8 │9 │ │ | ||
*├───┼───┼───┤+ │ | ||
*│4 │5 │6 │ │ | ||
*├───┼───┼───┼───┤ | ||
*│1 │2 │3 │ │ | ||
*├───┴───┼───┤Ent│ | ||
*│0 │. │ │ | ||
*└───────┴───┴───┘ | ||
*/ | ||
|
||
[0] = LAYOUT_numpad_5x4(KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
KC_P7, KC_P8, KC_P9, | ||
KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
KC_P1, KC_P2, KC_P3, | ||
KC_P0, KC_PDOT, KC_PENT) | ||
}; |
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,25 @@ | ||
# [Sendy YK](https://mr.sendyyk.com)'s Keymap | ||
|
||
`LAYOUT_numpad_5x4` | ||
|
||
### [0] | ||
|
||
``` | ||
┌───┬───┬───┬───┐ | ||
│N L│/ │* │- │ | ||
├───┼───┼───┼───┤ | ||
│7 │8 │9 │ │ | ||
├───┼───┼───┤+ │ | ||
│4 │5 │6 │ │ | ||
├───┼───┼───┼───┤ | ||
│1 │2 │3 │ │ | ||
├───┴───┼───┤Ent│ | ||
│0 │. │ │ | ||
└───────┴───┴───┘ | ||
``` | ||
|
||
## Build The Firmware | ||
|
||
You will need to build the firmware. To do so go to your terminal window and run the compile command: | ||
|
||
qmk compile -kb ai03/soyuz -km mrsendyyk |
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