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/ui/debug/PlotGPS.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

33 lines
387 B
C++

#ifndef PLOTGPS_H
#define PLOTGPS_H
#include <QWidget>
#include "../sensors/GPSSensor.h"
#include <Indoor/data/Timestamp.h>
class PlotGPS : public QWidget {
Q_OBJECT
private:
GPSData gpsData;
public:
explicit PlotGPS(QWidget *parent = 0);
void add(const Timestamp ts, const GPSData& data);
signals:
public slots:
void paintEvent(QPaintEvent*);
};
#endif // PLOTGPS_H