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.
update ai03/soyuz:mrsendyyk keymap (qmk#10161)
Update ai03 Soyuz readme.md and keymap.c * Update readme.md * Update readme.md * Update keymap.c * Update keymap.c * Update readme.md * Update readme.md * Update readme.md * Update readme.md
- Loading branch information
Showing
2 changed files
with
9 additions
and
38 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 |
---|---|---|
@@ -1,24 +1,9 @@ | ||
#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) | ||
[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 |
---|---|---|
@@ -1,25 +1,11 @@ | ||
# [Sendy YK](https://mr.sendyyk.com)'s Keymap | ||
# [Sendy YK's Keymap](https://github.com/mrsendyyk/my_qmk/tree/master/ai03_soyuz_numpad) | ||
|
||
`LAYOUT_numpad_5x4` | ||
|
||
### [0] | ||
|
||
``` | ||
┌───┬───┬───┬───┐ | ||
│N L│/ │* │- │ | ||
├───┼───┼───┼───┤ | ||
│7 │8 │9 │ │ | ||
├───┼───┼───┤+ │ | ||
│4 │5 │6 │ │ | ||
├───┼───┼───┼───┤ | ||
│1 │2 │3 │ │ | ||
├───┴───┼───┤Ent│ | ||
│0 │. │ │ | ||
└───────┴───┴───┘ | ||
``` | ||
![Default Layer [0]](https://raw.githubusercontent.com/mrsendyyk/my_qmk/master/ai03_soyuz_numpad/assets/ai03_soyuz_mrsendyyk.png) | ||
|
||
## 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 | ||
|
||
See [The Complete Newbs Guide To QMK](https://docs.qmk.fm/#/newbs). |