summaryrefslogtreecommitdiff
path: root/keyboards/stello65/beta/beta.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/stello65/beta/beta.c')
-rw-r--r--keyboards/stello65/beta/beta.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/keyboards/stello65/beta/beta.c b/keyboards/stello65/beta/beta.c
index 015f53b920..fa19135814 100644
--- a/keyboards/stello65/beta/beta.c
+++ b/keyboards/stello65/beta/beta.c
@@ -2,15 +2,17 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include "quantum.h"
-#include "encoder_actions.h"
-
-void matrix_scan_kb(void) {
- encoder_action_unregister();
- matrix_scan_user();
-}
+#if defined(ENCODER_ENABLE)
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
- encoder_action_register(index, clockwise);
+ if (index == 0) {
+ if (clockwise) {
+ tap_code_delay(KC_VOLU, 10);
+ } else {
+ tap_code_delay(KC_VOLD, 10);
+ }
+ }
return true;
-};
+}
+#endif