summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/k_numpad17/keymaps/default
diff options
context:
space:
mode:
authorMartin Karlsson <johnmartink@hotmail.com>2019-12-26 16:45:14 +0100
committerJoel Challis <git@zvecr.com>2019-12-26 15:45:14 +0000
commit4edc8fc3c70c30dbcc927dbfc8570369cbc325d6 (patch)
treee072a3f7adf011ad4d0ff8d1c423a65fc31d4108 /keyboards/handwired/k_numpad17/keymaps/default
parente5501d48155a7c2855d4c30249e8d2d40b7c621a (diff)
K-Nunmpad17 (#7708)
* Initial commit for K-Nunmpad * Changed layoutname Corrected the files according to drashnas suggestions. * Some names have been changed * Some code thats not been used has been removed * Fixed rules.mk When adding the commnity layout, tapdancing broke. This was fixed with rules.mk was changed in the k-numpad and karlssn keymap. * Cleanup according fauxpark Cleaned up the readme.md and the rules.mk according to feedback from fauxpark.
Diffstat (limited to 'keyboards/handwired/k_numpad17/keymaps/default')
-rw-r--r--keyboards/handwired/k_numpad17/keymaps/default/keymap.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/handwired/k_numpad17/keymaps/default/keymap.c b/keyboards/handwired/k_numpad17/keymaps/default/keymap.c
new file mode 100644
index 0000000000..2f383eea91
--- /dev/null
+++ b/keyboards/handwired/k_numpad17/keymaps/default/keymap.c
@@ -0,0 +1,24 @@
+#include QMK_KEYBOARD_H
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /*
+ * ,-------------------.
+ * | NL | / | * | - |
+ * |----|----|----|----|
+ * | 7 | 8 | 9 | |
+ * |----|----|----| + |
+ * | 4 | 5 | 6 | |
+ * |----|----|----|----|
+ * | 1 | 2 | 3 | |
+ * |----|----|----| En |
+ * | 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
+ ),
+};