UASControlParameters.h 1.22 KB
Newer Older
1 2 3 4 5 6 7 8
#ifndef UASCONTROLPARAMETERS_H
#define UASCONTROLPARAMETERS_H

#include <QWidget>
#include "UASManager.h"
#include <QTimer>
#include <QTabWidget>

9 10 11
namespace Ui
{
class UASControlParameters;
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
}

class UASControlParameters : public QWidget
{
    Q_OBJECT

public:
    explicit UASControlParameters(QWidget *parent = 0);
    ~UASControlParameters();

public slots:
    void changedMode(int mode);
    void activeUasSet(UASInterface* uas);
    void updateGlobalPosition(UASInterface*,double,double,double,quint64);
    void speedChanged(UASInterface*,double,double,double,quint64);
    void updateAttitude(UASInterface* uas, double roll, double pitch, double yaw, quint64 time);
    void setCommands();
    void getCommands();
30 31

    void setPassthrough();
32
    void updateMode(int uas,QString mode,QString description);
33
    void thrustChanged(UASInterface* uas,double throttle);
34 35 36 37 38 39 40 41

private:
    Ui::UASControlParameters *ui;
    QTimer* refreshTimerGet;
    UASInterface* activeUAS;
    double speed;
    double roll;
    double altitude;
42
    double throttle;
43 44
    QString mode;
    QString REDcolorStyle;
45 46
    QPointer<RadioCalibrationData> radio;
    LinkInterface* hilLink;
47 48 49
};

#endif // UASCONTROLPARAMETERS_H