RobotHardware-UESTC/Hardware/Pibot驱动底盘/PiRobot_Firmware v1.0/STM32/Lib/IMU/imu.h

12 lines
151 B
C
Raw Normal View History

2023-12-12 10:36:56 +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