mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-15 08:25:01 +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);
|
||
|
}
|
||
|
}
|
||
|
|