QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
ESP8266Component.h
Go to the documentation of this file.
1#pragma once
2
3#include "VehicleComponent.h"
4
6{
7 Q_OBJECT
8
9public:
10 explicit ESP8266Component(Vehicle *vehicle, AutoPilotPlugin *autopilot, QObject *parent = nullptr);
11
12 QStringList setupCompleteChangedTriggerList() const final { return QStringList(); }
13 QString name() const final { return _name; }
14 QString description() const final { return tr("The ESP8266 WiFi Bridge Component is used to setup the WiFi link."); }
15 QString iconResource() const final { return QStringLiteral("/qmlimages/wifi.svg"); }
16 bool requiresSetup() const final { return false; }
17 bool setupComplete() const final { return true; }
18 QUrl setupSource() const final { return QUrl::fromUserInput("qrc:/qml/QGroundControl/AutoPilotPlugins/Common/ESP8266Component.qml"); }
19 QUrl summaryQmlSource() const final { return QUrl::fromUserInput("qrc:/qml/QGroundControl/AutoPilotPlugins/Common/ESP8266ComponentSummary.qml"); }
20
21private:
22 const QString _name;
23 QVariantList _summaryItems;
24};
The AutoPilotPlugin class is an abstract base class which represents the methods and objects which ar...
QString name() const final
QUrl summaryQmlSource() const final
QString iconResource() const final
QString description() const final
bool requiresSetup() const final
QStringList setupCompleteChangedTriggerList() const final
bool setupComplete() const final
QUrl setupSource() const final
A vehicle component is an object which abstracts the physical portion of a vehicle into a set of conf...