Skip to content
UASInfoWidget.h 2.76 KiB
Newer Older
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
pixhawk's avatar
pixhawk committed
/**
 * @file
 *   @brief Detail information of one MAV
 *
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

#ifndef _UASINFOWIDGET_H_
#define _UASINFOWIDGET_H_

#include <QTimer>
#include <QMap>

#include "QGCDockWidget.h"
pixhawk's avatar
pixhawk committed
#include "UASInterface.h"
#include "ui_UASInfo.h"
#include "Vehicle.h"
pixhawk's avatar
pixhawk committed

/**
 * @brief Info indicator for the currently active UAS
 *
 **/
class UASInfoWidget : public QGCDockWidget
pixhawk's avatar
pixhawk committed
    Q_OBJECT
public:
    UASInfoWidget(const QString& title, QAction* action, QWidget *parent = 0, QString name = "");
pixhawk's avatar
pixhawk committed
    ~UASInfoWidget();

public slots:
dongfang's avatar
dongfang committed
    void updateBattery(UASInterface* uas, double voltage, double current, double percent, int seconds);
pixhawk's avatar
pixhawk committed
    void updateCPULoad(UASInterface* uas, double load);
    /**
     * @brief Set the loss rate of packets received by the MAV.
     * @param uasId UNUSED
     * @param receiveLoss A percentage value (0-100) of how many message the UAS has failed to receive.
     */
pixhawk's avatar
pixhawk committed
    void updateReceiveLoss(int uasId, float receiveLoss);
    void updateSeqLossPercent(int uasId, float seqLoss);
    void updateSeqLossTotal(int uasId, int seqLossTotal);

    /**
	 * @brief Set the loss rate of packets sent from the MAV 
	 * @param uasId UNUSED
	 * @param sendLoss A percentage value (0-100) of how many message QGC has failed to receive.
	 */
pixhawk's avatar
pixhawk committed
    void updateSendLoss(int uasId, float sendLoss);
    /** @brief Update the error count */
    void updateErrorCount(int uasid, QString component, QString device, int count);
pixhawk's avatar
pixhawk committed

    void setVoltage(UASInterface* uas, double voltage);
    void setChargeLevel(UASInterface* uas, double chargeLevel);
    void setTimeRemaining(UASInterface* uas, double seconds);

    void refresh();

protected:


    // Configuration variables
    int voltageDecimals;
    int loadDecimals;

    // State variables

    // Voltage
    double voltage;
    double chargeLevel;
    double timeRemaining;
    double load;
lm's avatar
lm committed
    float receiveLoss;
    float sendLoss;
pixhawk's avatar
pixhawk committed
    QTimer* updateTimer;
    QString name;
    quint64 startTime;
    QMap<QString, int> errors;
    static const int updateInterval = 800; ///< Refresh interval in milliseconds

    void showEvent(QShowEvent* event);
    void hideEvent(QHideEvent* event);
    
private slots:
    void _activeVehicleChanged(Vehicle* vehicle);
pixhawk's avatar
pixhawk committed

private:
    Ui::uasInfo ui;

    UASInterface*   _activeUAS;
    float           _seqLossPercent;
    int             _seqLossTotal;
pixhawk's avatar
pixhawk committed
};

#endif // _UASINFOWIDGET_H_