21 lines
320 B
C
21 lines
320 B
C
#ifndef controls_h
|
|
#define controls_h
|
|
|
|
|
|
void initControls();
|
|
void loopControls();
|
|
void onEncClick();
|
|
void onEncDoubleClick();
|
|
void onEncLPStart();
|
|
void encoderLoop();
|
|
void irLoop();
|
|
|
|
void controlsEvent(bool toRight);
|
|
|
|
void onLeftClick();
|
|
void onLeftDoubleClick();
|
|
void onRightClick();
|
|
void onRightDoubleClick();
|
|
|
|
#endif
|