diff options
author | jack <0x6A73@pm.me> | 2022-03-23 23:23:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 22:23:40 -0700 |
commit | e335d62eda6f9c295c1717cf7511dfb74a436f03 (patch) | |
tree | 20c407689325cc660a38b29f3428d76100859b93 /keyboards | |
parent | 55b3b2b8487ff9008806d41bd77a10fc796c4103 (diff) | |
download | qmk_firmware-e335d62eda6f9c295c1717cf7511dfb74a436f03.tar.gz qmk_firmware-e335d62eda6f9c295c1717cf7511dfb74a436f03.zip |
[Keyboard] Add keyboard level encoder function for GMMK Pro (#16721)
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/gmmk/pro/pro.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/gmmk/pro/pro.c b/keyboards/gmmk/pro/pro.c index 816d089a58..6aed1d6e18 100644 --- a/keyboards/gmmk/pro/pro.c +++ b/keyboards/gmmk/pro/pro.c @@ -14,3 +14,17 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "pro.h" + +#ifdef ENCODER_ENABLE +bool encoder_update_kb(uint8_t index, bool clockwise) { + if (!encoder_update_user(index, clockwise)) { + return false; + } + if (clockwise) { + tap_code_delay(KC_VOLU, 10); + } else { + tap_code_delay(KC_VOLD, 10); + } + return false; +} +#endif |