diff options
author | QMK Bot <hello@qmk.fm> | 2022-02-21 08:40:46 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-02-21 08:40:46 +0000 |
commit | 7d153b9a66670ef26f826de01384a9b9713598ec (patch) | |
tree | ae6bdc6e7145bc144251d0e044fc23709034026b /keyboards/handwired/snatchpad/keymaps/default | |
parent | 8dc7cae7c712b6f405e69b5a25dbb111fb8fdc5e (diff) | |
parent | 18490537a5a2c050ecfa1ee2209229eba6b8b342 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/handwired/snatchpad/keymaps/default')
-rw-r--r-- | keyboards/handwired/snatchpad/keymaps/default/keymap.c | 23 | ||||
-rw-r--r-- | keyboards/handwired/snatchpad/keymaps/default/readme.md | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/handwired/snatchpad/keymaps/default/keymap.c b/keyboards/handwired/snatchpad/keymaps/default/keymap.c new file mode 100644 index 0000000000..a473d4778b --- /dev/null +++ b/keyboards/handwired/snatchpad/keymaps/default/keymap.c @@ -0,0 +1,23 @@ +// Copyright 2022 xia0 (@xia0) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [0] = LAYOUT( + KC_ESC , KC_SPC , MO(2) , + KC_MPRV, KC_MNXT, KC_ENT , + KC_MUTE, KC_MPLY + ), + [1] = LAYOUT( + KC_LOCK, KC_UP , _______, + KC_LEFT, KC_DOWN, KC_RGHT, + KC_BTN1, KC_BTN2 + ), + [2] = LAYOUT( + _______, _______, _______, + _______, _______, _______, + TO(0) , TO(1) + ) +}; + diff --git a/keyboards/handwired/snatchpad/keymaps/default/readme.md b/keyboards/handwired/snatchpad/keymaps/default/readme.md new file mode 100644 index 0000000000..11c0c781c4 --- /dev/null +++ b/keyboards/handwired/snatchpad/keymaps/default/readme.md @@ -0,0 +1 @@ +# The default keymap for snatchpad |