This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/sensors/CompassSensor.h
kazu b0712ec005 added gps support
added compass support
added ui elements for gps and compass
added support for writing sensor data
2017-03-21 16:27:14 +01:00

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