a0fed0ea17
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
8 lines
182 B
C
8 lines
182 B
C
#include "promicro.h"
|
|
#include "encoder.h"
|
|
|
|
#ifdef ENCODER_ENABLED
|
|
bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|
return encoder_update_user(index, clockwise);
|
|
}
|
|
#endif
|