summaryrefslogtreecommitdiff
path: root/keyboards/gmmk
diff options
context:
space:
mode:
authorjack <0x6A73@pm.me>2022-03-23 23:23:40 -0600
committerGitHub <noreply@github.com>2022-03-23 22:23:40 -0700
commite335d62eda6f9c295c1717cf7511dfb74a436f03 (patch)
tree20c407689325cc660a38b29f3428d76100859b93 /keyboards/gmmk
parent55b3b2b8487ff9008806d41bd77a10fc796c4103 (diff)
[Keyboard] Add keyboard level encoder function for GMMK Pro (#16721)
Diffstat (limited to 'keyboards/gmmk')
-rw-r--r--keyboards/gmmk/pro/pro.c14
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