mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 23:18:28 -04:00
17 lines
254 B
C
17 lines
254 B
C
|
#ifndef AP_Compass_h
|
||
|
#define AP_Compass_h
|
||
|
|
||
|
#include <Compass.h>
|
||
|
|
||
|
class AP_Compass : public Compass
|
||
|
{
|
||
|
public:
|
||
|
AP_Compass(); // Constructor
|
||
|
void init();
|
||
|
void update();
|
||
|
void calculate(float roll, float pitch);
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif
|