blob: 0176dc1a3c1821fb141e1b792a06c31a60ae454f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "promicro.h"
#include "encoder.h"
#ifdef ENCODER_ENABLED
void encoder_update_kb(int8_t index, bool clockwise) {
encoder_update_user(index, clockwise);
}
#endif
|