42 int8_t
init(uint8_t delay = 0, int16_t gx = 0, int16_t gy = 0, int16_t gz = 0, int16_t ax = 0, int16_t ay = 0, int16_t az = 0);
74 int8_t
calculate_offsets(int16_t* gx, int16_t* gy, int16_t* gz, int16_t* ax, int16_t* ay, int16_t* az);
Event registration helpers for the IMU subsystem.
Definition ImuControl.h:21
float getTemperature()
Get the last temperature reading from the IMU.
int8_t dispose()
Dispose/stop the IMU subsystem and release resources.
ImuData getImuData()
Get the last IMU reading snapshot.
int8_t calculate_offsets(int16_t *gx, int16_t *gy, int16_t *gz, int16_t *ax, int16_t *ay, int16_t *az)
Calculate and output sensor offsets.
float getVersion()
Get current library version.
int8_t init(uint8_t delay=0, int16_t gx=0, int16_t gy=0, int16_t gz=0, int16_t ax=0, int16_t ay=0, int16_t az=0)
Initialize the IMU subsystem.
Latest IMU reading snapshot returned by the IMU subsystem.
Definition ImuEventListener.h:91