forked from logzhan/RobotHardware-UESTC
12 lines
152 B
C
12 lines
152 B
C
|
#ifndef _GEBOT_IMU_H_
|
||
|
#define _GEBOT_IMU_H_
|
||
|
|
||
|
class IMU
|
||
|
{
|
||
|
public:
|
||
|
virtual bool Init() = 0;
|
||
|
virtual void GetData(float* imu_data) = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|