16 QString
name() const final {
return _name; }
17 QString
description() const final {
return tr(
"The Radio Component is used to setup which channels on your RC Transmitter you will use for each vehicle control such as Roll, Pitch, Yaw and Throttle. "
18 "It also allows you to assign switches and dials to the various flight modes. "
19 "Prior to flight you must also calibrate the extents for all of your channels."); }
20 QString
iconResource() const final {
return QStringLiteral(
"/qmlimages/RadioComponentIcon.png"); }
23 QUrl
setupSource() const final {
return QUrl::fromUserInput(QStringLiteral(
"qrc:/qml/QGroundControl/AutoPilotPlugins/Common/RadioComponent.qml")); }
24 QUrl
summaryQmlSource() const final {
return QUrl::fromUserInput(QStringLiteral(
"qrc:/qml/QGroundControl/AutoPilotPlugins/APM/APMRadioComponentSummary.qml")); }
27 void _triggerChanged();
30 void _connectSetupTriggers();
32 const QString _name = tr(
"Radio");
33 const QStringList _mapParams = {
34 QStringLiteral(
"RCMAP_ROLL"),
35 QStringLiteral(
"RCMAP_PITCH"),
36 QStringLiteral(
"RCMAP_YAW"),
37 QStringLiteral(
"RCMAP_THROTTLE")
39 QList<Fact*> _triggerFacts;
QString description() const final
bool setupComplete() const final
QUrl summaryQmlSource() const final
QString iconResource() const final
QStringList setupCompleteChangedTriggerList() const final
QString name() const final
bool requiresSetup() const final
QUrl setupSource() const final
A Fact is used to hold a single value within the system.