diff options
Diffstat (limited to 'layouts/community/numpad_5x4')
| -rw-r--r-- | layouts/community/numpad_5x4/mrsendyyk/keymap.c | 34 | ||||
| -rw-r--r-- | layouts/community/numpad_5x4/mrsendyyk/readme.md | 22 | ||||
| -rw-r--r-- | layouts/community/numpad_5x4/mrsendyyk/rules.mk | 1 |
3 files changed, 57 insertions, 0 deletions
diff --git a/layouts/community/numpad_5x4/mrsendyyk/keymap.c b/layouts/community/numpad_5x4/mrsendyyk/keymap.c new file mode 100644 index 000000000..7854b12b4 --- /dev/null +++ b/layouts/community/numpad_5x4/mrsendyyk/keymap.c | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2020 Sendy YK <mr@sendyyk.com>. | ||
| 3 | * | ||
| 4 | * This program is free software: you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation, either version 3 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | // Number Pad 5x4 Layout and Keymap by Sendy YK <https://mr.sendyyk.com>. | ||
| 19 | |||
| 20 | #include QMK_KEYBOARD_H | ||
| 21 | |||
| 22 | enum layer_names { | ||
| 23 | _BASE | ||
| 24 | }; | ||
| 25 | |||
| 26 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 27 | [_BASE] = LAYOUT_numpad_5x4( | ||
| 28 | KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
| 29 | KC_P7, KC_P8, KC_P9, | ||
| 30 | KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
| 31 | KC_P1, KC_P2, KC_P3, | ||
| 32 | KC_P0, KC_PDOT, KC_PENT | ||
| 33 | ) | ||
| 34 | }; | ||
diff --git a/layouts/community/numpad_5x4/mrsendyyk/readme.md b/layouts/community/numpad_5x4/mrsendyyk/readme.md new file mode 100644 index 000000000..a3c8a7528 --- /dev/null +++ b/layouts/community/numpad_5x4/mrsendyyk/readme.md | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # Sendy YK's Numpad 5x4 Layout and Keymap | ||
| 2 | |||
| 3 | Number Pad 5x4 layout and keymap by [Sendy YK](https://mr.sendyyk.com). | ||
| 4 | |||
| 5 | ## Numpad 5x4 Layout | ||
| 6 | |||
| 7 |  | ||
| 8 | |||
| 9 | ## Keymap | ||
| 10 | |||
| 11 |  | ||
| 12 | |||
| 13 | ## Build The Firmware | ||
| 14 | |||
| 15 | Make example for keyboard (after setting up your build environment): | ||
| 16 | |||
| 17 | make <keyboard_folder>:mrsendyyk | ||
| 18 | |||
| 19 | More information: | ||
| 20 | * [Setting Up Your QMK Environment](https://docs.qmk.fm/#/getting_started_build_tools) | ||
| 21 | * [More Detailed make Instructions](https://docs.qmk.fm/#/getting_started_make_guide) | ||
| 22 | * [The Complete Newbs Guide To QMK](https://docs.qmk.fm/#/newbs) | ||
diff --git a/layouts/community/numpad_5x4/mrsendyyk/rules.mk b/layouts/community/numpad_5x4/mrsendyyk/rules.mk new file mode 100644 index 000000000..5c3115dc3 --- /dev/null +++ b/layouts/community/numpad_5x4/mrsendyyk/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| USER_NAME := mrsendyyk | |||
