aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/jj4x4/keymaps/default
diff options
context:
space:
mode:
authorsprayed <32306510+sprayed@users.noreply.github.com>2019-02-05 13:01:35 -0500
committerDrashna Jaelre <drashna@live.com>2019-02-05 10:01:35 -0800
commit7df9e584fa1ee31ab5bb35b1c7fa09845cba0a80 (patch)
tree3d04a2c8e38652a7baf434ea5e04278ddc463d11 /keyboards/jj4x4/keymaps/default
parentd4e1e712f68567dfed6ff19cf762d01f6bb3d60c (diff)
downloadfirmware-7df9e584fa1ee31ab5bb35b1c7fa09845cba0a80.tar.gz
firmware-7df9e584fa1ee31ab5bb35b1c7fa09845cba0a80.tar.bz2
firmware-7df9e584fa1ee31ab5bb35b1c7fa09845cba0a80.zip
[Keyboard] Add support for jj4x4 numpad/macropad by Kprepublic (#5016)
* added keyboard jj4x4, a shorter version of the jj40 * removed useless file * edited jj4x4 readme.md * optimized array size in jj4x4 config.h, removed reference to jj40 layouts from rules.mk * removed custom matrix for this ps2avrgb board, refactored column and row pins
Diffstat (limited to 'keyboards/jj4x4/keymaps/default')
-rw-r--r--keyboards/jj4x4/keymaps/default/keymap.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/keyboards/jj4x4/keymaps/default/keymap.c b/keyboards/jj4x4/keymaps/default/keymap.c
new file mode 100644
index 000000000..d4130e809
--- /dev/null
+++ b/keyboards/jj4x4/keymaps/default/keymap.c
@@ -0,0 +1,34 @@
+#include QMK_KEYBOARD_H
+
+
+#define _QWERTY 0
+
+
+enum custom_keycodes {
+ QWERTY = SAFE_RANGE,
+};
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+/* Qwerty
+ * ,---------------------------.
+ * | A | B | C | D |
+ * +------+------+------+------|
+ * | E | F | G | H |
+ * +------+------+------+------|
+ * | I | J | K | L |
+ * +------+------+------+------|
+ * | M | N | O | P |
+ * ----------------------------'
+ */
+[_QWERTY] = LAYOUT( \
+ KC_A, KC_B, KC_C, KC_D, \
+ KC_E, KC_F, KC_G, KC_H, \
+ KC_I, KC_J, KC_K, KC_L, \
+ KC_M, KC_N, KC_O, KC_P \
+),
+};
+
+// Loop
+void matrix_scan_user(void) {
+ // Empty
+};