diff options
author | QMK Bot <hello@qmk.fm> | 2022-11-09 21:27:12 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-11-09 21:27:12 +0000 |
commit | 785e6f5476173512e9ee23491745f141c519b0d0 (patch) | |
tree | 24899b5c37ad3c079699e46eb85ab5650651e71d /keyboards/binepad/bn006/keymaps/default | |
parent | 27dec8d16d8e47da246ce68827c8ce5a433dcb91 (diff) | |
parent | 84920ff5f4c1dfb3c84ca175899f81804be30396 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/binepad/bn006/keymaps/default')
-rwxr-xr-x | keyboards/binepad/bn006/keymaps/default/keymap.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/binepad/bn006/keymaps/default/keymap.c b/keyboards/binepad/bn006/keymaps/default/keymap.c new file mode 100755 index 0000000000..a79ff505a1 --- /dev/null +++ b/keyboards/binepad/bn006/keymaps/default/keymap.c @@ -0,0 +1,18 @@ +/* Copyright 2022 Binepad (@binpad) */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┐ + * │ A │ B │ C │ + * ├───┼───┼───┤ + * │ D │ E │ F │ + * └───┴───┴───┘ + */ + [0] = LAYOUT_ortho_2x3( + KC_MPLY, KC_MUTE, KC_VOLU, + KC_MPRV, KC_MNXT, KC_VOLD + ) +}; |