summaryrefslogtreecommitdiff
path: root/keyboards/evolv/evolv.c
diff options
context:
space:
mode:
authorÁlvaro A. Volpato <alvaro.volpato@usp.br>2021-10-23 02:58:52 -0300
committerGitHub <noreply@github.com>2021-10-22 22:58:52 -0700
commitd71c962b61d638e38a449719401695bdc4fb6257 (patch)
treea2c3c6b84f1ae153a223b7d709e3b833629d49cf /keyboards/evolv/evolv.c
parent8ec1afd17ce1fdc9aa217c1e8ea2e5b5f0decf4b (diff)
[Keyboard] Update encoder callback on Evolv75 (#14757)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/evolv/evolv.c')
-rw-r--r--keyboards/evolv/evolv.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/keyboards/evolv/evolv.c b/keyboards/evolv/evolv.c
index 90df449ee2..3f27628946 100644
--- a/keyboards/evolv/evolv.c
+++ b/keyboards/evolv/evolv.c
@@ -17,14 +17,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "evolv.h"
+#ifndef MEDIA_KEY_DELAY
+# define MEDIA_KEY_DELAY 100
+#endif
+
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) return false;
- if (index == 0) { /* First encoder */
- if (clockwise) {
- tap_code(KC_VOLU);
- } else {
- tap_code(KC_VOLD);
- }
- }
+ tap_code_delay(clockwise ? KC_VOLU : KC_VOLD, MEDIA_KEY_DELAY);
return true;
}