mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
11 lines
155 B
C
11 lines
155 B
C
|
#include "encoder.h"
|
||
|
|
||
|
void encoder_update_user(uint8_t index, bool clockwise) {
|
||
|
if (clockwise) {
|
||
|
tap_code(KC_1);
|
||
|
} else {
|
||
|
tap_code(KC_0);
|
||
|
}
|
||
|
}
|
||
|
|