This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Drashna Jaelre a0fed0ea17
Convert Encoder callbacks to be boolean functions (#12805)
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
2021-05-21 23:17:32 -07:00

9 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