QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
APMSubMotorComponentController.h
Go to the documentation of this file.
1#pragma once
2
3#include <QtQmlIntegration/QtQmlIntegration>
4
6
10{
11 Q_OBJECT
12 QML_ELEMENT
14
15public:
16 explicit APMSubMotorComponentController(QObject *parent = nullptr);
17
18 QString motorDetectionMessages() const { return _motorDetectionMessages; };
19
20signals:
22
23private slots:
24 void _handleNewMessages(int sysid, int componentid, int severity, const QString &text, const QString &description);
25
26private:
27 QString _motorDetectionMessages;
28};
MVC Controller for APMSubMotorComponent.qml.
Used for handling missing Facts from C++ code.