1
0
Fork 0

Quark revision - rotary encoder and 7u support (#17664)

by npspears
This commit is contained in:
npspears 2022-09-16 12:37:39 -05:00 committed by GitHub
parent 1ec8ae8a49
commit 799046fd9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 207 additions and 19 deletions

View file

@ -15,3 +15,15 @@
*/
#include "quark.h"
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_VOLD, 10);
} else {
tap_code_delay(KC_VOLU, 10);
}
}
return true;
}