mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-15 13:04:38 +00:00
10 lines
171 B
C
10 lines
171 B
C
|
#include "rotr.h"
|
||
|
|
||
|
void encoder_update_kb(uint8_t index, bool clockwise) {
|
||
|
if (clockwise) {
|
||
|
tap_code(KC_VOLU);
|
||
|
} else {
|
||
|
tap_code(KC_VOLD);
|
||
|
}
|
||
|
}
|