added gps support

added compass support
added ui elements for gps and compass
added support for writing sensor data
This commit is contained in:
2017-03-21 16:27:14 +01:00
parent c7c94cbebe
commit b0712ec005
24 changed files with 586 additions and 30 deletions

12
sensors/CompassSensor.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef COMPASSSENSOR_H
#define COMPASSSENSOR_H
#include "Sensor.h"
#include <Indoor/sensors/imu/CompassData.h>
class CompassSensor : public Sensor<CompassData> {
};
#endif // COMPASSSENSOR_H