mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-23 15:00:13 +00:00
22 lines
360 B
C
22 lines
360 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef bool (*MouseMoveCallback)(int8_t x, int8_t y, void* context);
|
|
|
|
void calibration_begin();
|
|
bool calibration_step();
|
|
void calibration_end();
|
|
|
|
void tracking_begin();
|
|
void tracking_step(MouseMoveCallback mouse_move, void* context);
|
|
void tracking_end();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|