mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-29 12:17:50 +06:00
8f6d2ac53c
Co-authored-by: Nick Brassel <nick@tzarc.org>
31 lines
607 B
C
31 lines
607 B
C
// Copyright 2022 Markus Knutsson (@TweetyDaBird)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include QMK_KEYBOARD_H
|
|
|
|
// Defines names for use in layer keycodes and the keymap
|
|
enum layer_names {
|
|
_BASE
|
|
};
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
|
[_BASE] = LAYOUT(
|
|
KC_MPLY,
|
|
UG_NEXT, UG_VALU, UG_TOGG,
|
|
KC_MPRV, KC_MPLY, KC_MNXT
|
|
|
|
)
|
|
};
|
|
|
|
bool encoder_update_user(uint8_t index, bool clockwise) {
|
|
if (index == 0) {
|
|
if (clockwise) {
|
|
tap_code(KC_VOLU);
|
|
} else {
|
|
tap_code(KC_VOLD);
|
|
}
|
|
}
|
|
return false;
|
|
}
|