~ruther/qmk_firmware

43b21cffe068f0591b9c9ecbf677a463a93747a7 — ladbahuy 5 years ago 58c31f5
Update rartpad via keymap (#9747)

1 files changed, 16 insertions(+), 0 deletions(-)

M keyboards/rart/rartpad/keymaps/via/keymap.c
M keyboards/rart/rartpad/keymaps/via/keymap.c => keyboards/rart/rartpad/keymaps/via/keymap.c +16 -0
@@ 34,3 34,19 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
    _______, _______, _______, _______
    )
};

void encoder_update_user(uint8_t index, bool clockwise) {
    if (index == 0) { /* First encoder */
        if (clockwise) {
            tap_code(KC_WH_U);
        } else {
            tap_code(KC_WH_D);
        }
    } else if (index == 1) { /* Second encoder */
        if (clockwise) {
            tap_code(KC_VOLU);
        } else {
            tap_code(KC_VOLD);
        }
    }
}