diff options
author | QMK Bot <hello@qmk.fm> | 2022-04-14 18:24:36 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-04-14 18:24:36 +0000 |
commit | 59885d07af68f0bd61020664a7eb6f75d56c1357 (patch) | |
tree | 52f641a5eb1d088f167b91c74d73bdbbff5982da /keyboards/avalanche/avalanche.c | |
parent | 399de0be12fb311f76f57c69d2b0358d0cf1f107 (diff) | |
parent | 8de4065b099a99bcffe436a038616b0c31ade7c3 (diff) | |
download | qmk_firmware-59885d07af68f0bd61020664a7eb6f75d56c1357.tar.gz qmk_firmware-59885d07af68f0bd61020664a7eb6f75d56c1357.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/avalanche/avalanche.c')
-rw-r--r-- | keyboards/avalanche/avalanche.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboards/avalanche/avalanche.c b/keyboards/avalanche/avalanche.c new file mode 100644 index 0000000000..08d95043b2 --- /dev/null +++ b/keyboards/avalanche/avalanche.c @@ -0,0 +1,25 @@ +// Copyright 2022 Vitaly Volkov (@vlkv) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "avalanche.h" + +#ifdef ENCODER_ENABLE +bool encoder_update_kb(uint8_t index, bool clockwise) { + if (!encoder_update_user(index, clockwise)) { return false; } + if (index == 0) { + if (clockwise) { + tap_code_delay(KC_VOLU, 10); + } else { + tap_code_delay(KC_VOLD, 10); + } + } else if (index == 1) { /* Second encoder */ + if (clockwise) { + tap_code(KC_PGUP); + } else { + tap_code(KC_PGDOWN); + } + } + return true; +} +#endif + |