12345678910111213141516171819202122232425262728293031 |
- #ifndef MadgwickAHRS_h
- #define MadgwickAHRS_h
- void MadgwickAHRSupdate(float gx, float gy, float gz, float ax, float ay, float az, float mx, float my, float mz);
- void MadgwickAHRSupdateIMU(float gx, float gy, float gz, float ax, float ay, float az, float *pitch, float *roll, float *yaw);
- void MadgwickAHRSetBeta(float beta);
- #endif
|