QGroundControlQmlGlobal.json 1.77 KB
Newer Older
1 2 3 4 5
[
{
    "name":             "OfflineEditingFirmwareType",
    "shortDescription": "Offline editing firmware type",
    "type":             "uint32",
6
    "enumStrings":      "ArduPilot,PX4 Pro,Mavlink Generic",
7 8 9 10 11 12 13
    "enumValues":       "3,12,0",
    "defaultValue":     3
},
{
    "name":             "OfflineEditingVehicleType",
    "shortDescription": "Offline editing vehicle type",
    "type":             "uint32",
14
    "enumStrings":      "Fixed Wing,Multi-Rotor,VTOL,Rover,Sub",
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    "enumValues":       "1,2,19,10,12",
    "defaultValue":     1
},
{
    "name":             "OfflineEditingCruiseSpeed",
    "shortDescription": "Offline editing cruise speed",
    "longDescription":  "This value defines the cruising speed for forward flight vehicles for use in calculating mission duration when not connected to a vehicle.",
    "type":             "double",
    "defaultValue":     16.0,
    "min":              1.0,
    "units":            "m/s",
    "decimalPlaces":    2
},
{
    "name":             "OfflineEditingHoverSpeed",
    "shortDescription": "Offline editing hover speed",
    "longDescription":  "This value defines the cruising speed for multi-rotor vehicles for use in calculating mission duration when not connected to a vehicle.",
    "type":             "double",
    "defaultValue":     4.0,
    "min":              1.0,
    "units":            "m/s",
    "decimalPlaces":    2
},
{
    "name":             "batteryPercentRemainingAnnounce",
    "shortDescription": "Announce battery remaining percent",
    "longDescription":  "QGroundControl will announce the remaining battery percent when it falls below the specified percentage.",
    "type":             "uint32",
    "defaultValue":     30,
    "units":            "%",
    "min":              0,
    "max":              100
}
]