diff options
author | butterkeebs <124812866+butterkeebs@users.noreply.github.com> | 2023-04-02 18:50:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-02 11:50:14 -0600 |
commit | b5d0c4469067ca81e3a8a60fc349f5ad6d92c363 (patch) | |
tree | d9addc473bcec68d21dd2ffabd078e050c2afa93 /keyboards/butterkeebs/pocketpad/keymaps | |
parent | d0e0b9e583447fe3e8cc3d6dde3b839ceb1972b3 (diff) |
[Keyboard] Add pocketpad (#20229)
Co-authored-by: jack <0x6a73@protonmail.com>
Diffstat (limited to 'keyboards/butterkeebs/pocketpad/keymaps')
-rw-r--r-- | keyboards/butterkeebs/pocketpad/keymaps/default/keymap.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/butterkeebs/pocketpad/keymaps/default/keymap.c b/keyboards/butterkeebs/pocketpad/keymaps/default/keymap.c new file mode 100644 index 0000000000..0591fde140 --- /dev/null +++ b/keyboards/butterkeebs/pocketpad/keymaps/default/keymap.c @@ -0,0 +1,14 @@ +// ButterKeebs <butterkeebs@github> +// SPDX-License-Identifier: GPL-2.0+ + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + + LAYOUT( + KC_NUM_LOCK, KC_KP_SLASH, KC_KP_ASTERISK, KC_KP_MINUS, + KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_PLUS, + KC_KP_4, KC_KP_5, KC_KP_6, KC_KP_ENTER, + KC_KP_1, KC_KP_2, KC_KP_3, KC_KP_DOT, + KC_F, KC_KP_0) +};
\ No newline at end of file |