RobotHardware-UESTC/Hardware/Firmware/Gebot_Firmware v1.0/STM32/Lib/IMU/imu.h

12 lines
151 B
C
Raw Permalink Normal View History

2024-01-18 02:06:22 +08:00
#ifndef PIBOT_IMU_H_
#define PIBOT_IMU_H_
class IMU
{
public:
virtual bool init() = 0;
virtual void get_data(float* imu_data) = 0;
};
#endif