added compass support added ui elements for gps and compass added support for writing sensor data
13 lines
197 B
C++
13 lines
197 B
C++
#ifndef COMPASSSENSOR_H
|
|
#define COMPASSSENSOR_H
|
|
|
|
#include "Sensor.h"
|
|
#include <Indoor/sensors/imu/CompassData.h>
|
|
|
|
class CompassSensor : public Sensor<CompassData> {
|
|
|
|
};
|
|
|
|
|
|
#endif // COMPASSSENSOR_H
|