QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
RoverChecklist.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3import QtQml.Models
4
5import QGroundControl
6import QGroundControl.Controls
7import QGroundControl.FlyView
8
9Item {
10 property var model: listModel
11 PreFlightCheckModel {
12 id: listModel
13 PreFlightCheckGroup {
14 name: qsTr("Rover Initial Checks")
15
16 PreFlightCheckButton {
17 name: qsTr("Hardware")
18 manualText: qsTr("Battery mounted and secured?")
19 }
20
21 PreFlightBatteryCheck {
22 failurePercent: 40
23 allowFailurePercentOverride: false
24 }
25
26 PreFlightSensorsHealthCheck {
27 }
28
29 PreFlightGPSCheck {
30 failureSatCount: 9
31 allowOverrideSatCount: true
32 }
33
34 PreFlightRCCheck {
35 }
36 }
37
38 PreFlightCheckGroup {
39 name: qsTr("Please arm the vehicle here")
40
41 PreFlightCheckButton {
42 name: qsTr("Mission")
43 manualText: qsTr("Please confirm mission is valid (waypoints valid, no terrain collision).")
44 }
45
46 PreFlightSoundCheck {
47 }
48 }
49
50 PreFlightCheckGroup {
51 name: qsTr("Last preparations before launch")
52
53 // Check list item group 2 - Final checks before launch
54 PreFlightCheckButton {
55 name: qsTr("Payload")
56 manualText: qsTr("Configured and started? Payload lid closed?")
57 }
58
59 PreFlightCheckButton {
60 name: qsTr("Wind & weather")
61 manualText: qsTr("OK for your platform?")
62 }
63
64 PreFlightCheckButton {
65 name: qsTr("Mission area")
66 manualText: qsTr("Mission area and path free of obstacles/people?")
67 }
68 }
69 }
70}