philsson 15dd8e6bc7 IMU acc and gyro fusion
Needs tweaking to get the right amount of acc data
2018-09-02 19:06:20 +02:00

23 lines
212 B
C++

#include "src/drivers/MPU6000.h"
namespace control {
class ImuFusion
{
public:
ImuFusion(mpu6000_spi* pImu);
float getAngle(float dT);
private:
mpu6000_spi* m_pImu;
float m_angle;
};
}