diff options
author | Brian Mock <brian@mockbrian.com> | 2018-10-06 20:55:48 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-10-06 20:55:48 -0700 |
commit | 370fdb89c2b63dafcbbe7deae40189dad26a820f (patch) | |
tree | 8dbf5a3b4a34f0d849d8186226212708885f10c0 /keyboards/thevankeyboards/roadkit/keymaps/wavebeem-gamepad/keymap.c | |
parent | f86c0c2643a665dd09bc7a9a2beaaf37f97b9b61 (diff) |
Keymap: Adds TheVan RoadKit Gamepad Layout (#4090)
* adds prototype firmware for wavebeem-gamepad
* adds installer script
* updates readme
* updates title
* adds prototype firmware for wavebeem-gamepad
* adds installer script
* updates readme
* updates title
* removes unused code
* removes more code
* simplify code
Diffstat (limited to 'keyboards/thevankeyboards/roadkit/keymaps/wavebeem-gamepad/keymap.c')
-rw-r--r-- | keyboards/thevankeyboards/roadkit/keymaps/wavebeem-gamepad/keymap.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/thevankeyboards/roadkit/keymaps/wavebeem-gamepad/keymap.c b/keyboards/thevankeyboards/roadkit/keymaps/wavebeem-gamepad/keymap.c new file mode 100644 index 0000000000..dfdded8e7b --- /dev/null +++ b/keyboards/thevankeyboards/roadkit/keymaps/wavebeem-gamepad/keymap.c @@ -0,0 +1,10 @@ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [0] = LAYOUT_ortho_4x4( + KC_TAB, KC_Q, KC_W, KC_E, + KC_ESC, KC_A, KC_S, KC_D, + KC_LSFT, KC_Z, KC_X, KC_C, + KC_F, KC_LALT, KC_LCTL, KC_SPC + ), +}; |