1
0

rotr.c 171 B

123456789
  1. #include "rotr.h"
  2. void encoder_update_kb(uint8_t index, bool clockwise) {
  3. if (clockwise) {
  4. tap_code(KC_VOLU);
  5. } else {
  6. tap_code(KC_VOLD);
  7. }
  8. }