Merge remote-tracking branch 'origin/master' into develop

master
QMK Bot 2021-01-21 22:23:58 +00:00
commit e4ff5eb3eb
1 changed files with 18 additions and 4 deletions

View File

@ -1,5 +1,11 @@
#include QMK_KEYBOARD_H
enum encoder_names {
_LEFT,
_RIGHT,
_MIDDLE,
};
enum layer_names {
_ZERO,
_ONE,
@ -36,17 +42,25 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
};
void encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) {
if (index == _LEFT) {
if (clockwise) {
tap_code(KC_VOLU);
} else {
tap_code(KC_VOLD);
}
} else if (index == 1) {
}
else if (index == _MIDDLE) {
if (clockwise) {
tap_code(KC_WH_U);
tap_code(KC_DOWN);
} else {
tap_code(KC_WH_D);
tap_code(KC_UP);
}
}
else if (index == _RIGHT) {
if (clockwise) {
tap_code(KC_PGDN);
} else {
tap_code(KC_PGUP);
}
}
}