diff options
author | Patryk <61631089+patrykf03@users.noreply.github.com> | 2023-02-01 14:13:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 14:13:18 +0000 |
commit | 252b041b97c03374e8f10570a54992f7f91f5f26 (patch) | |
tree | 6a0210aa045f425c683fef8ff22c0f47a92c9787 /keyboards/mecxlabs/mp1/keymaps | |
parent | e296d671463f38a78c75ee0727016939634ef985 (diff) |
add Mecx Labs mp1 macropad (#19064)
* add mecxlabs mp1 macropad
Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'keyboards/mecxlabs/mp1/keymaps')
-rw-r--r-- | keyboards/mecxlabs/mp1/keymaps/default/keymap.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/mecxlabs/mp1/keymaps/default/keymap.c b/keyboards/mecxlabs/mp1/keymaps/default/keymap.c new file mode 100644 index 0000000000..a58fefbd2d --- /dev/null +++ b/keyboards/mecxlabs/mp1/keymaps/default/keymap.c @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + + [0] = LAYOUT_ortho_3x3( + KC_1, KC_2, KC_3, + KC_4, KC_5, KC_6, + KC_7, KC_8, KC_9 + ) + +}; + +bool encoder_update_user(uint8_t index, bool clockwise) { + if (clockwise) { + tap_code(KC_VOLU); + } else { + tap_code(KC_VOLD); + } + return true; +} |