App.SettingsGroup.json 4.56 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
    "enumValues":       "3,12,0",
8
    "defaultValue":     12
9 10 11 12 13
},
{
    "name":             "OfflineEditingVehicleType",
    "shortDescription": "Offline editing vehicle type",
    "type":             "uint32",
14
    "enumStrings":      "Fixed Wing,Multi-Rotor,VTOL,Rover,Sub",
15
    "enumValues":       "1,2,19,10,12",
16
    "defaultValue":     2
17 18 19 20 21 22
},
{
    "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",
23
    "defaultValue":     15.0,
24 25 26 27 28 29 30 31 32
    "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",
33
    "defaultValue":     5.0,
34 35 36 37 38 39 40
    "min":              1.0,
    "units":            "m/s",
    "decimalPlaces":    2
},
{
    "name":             "batteryPercentRemainingAnnounce",
    "shortDescription": "Announce battery remaining percent",
41
    "longDescription":  "Announce the remaining battery percent when it falls below the specified percentage.",
42 43 44 45 46
    "type":             "uint32",
    "defaultValue":     30,
    "units":            "%",
    "min":              0,
    "max":              100
47 48 49 50 51 52 53 54
},
{
    "name":             "DefaultMissionItemAltitude",
    "shortDescription": "Default value for altitude",
    "longDescription":  "This value specifies the default altitude for new items added to a mission.",
    "type":             "double",
    "defaultValue":     50.0,
    "min":              0.0,
55
    "max":              121.92,
56 57
    "units":            "meters",
    "decimalPlaces":    2
58
},
59 60
{
    "name":             "PromptFLightDataSave",
61 62
    "shortDescription": "Save telemetry Log after each flight",
    "longDescription":  "If this option is enabled a telemetry will be saved after each flight completes.",
63 64 65 66 67
    "type":             "bool",
    "defaultValue":     true
},
{
    "name":             "PromptFLightDataSaveNotArmed",
68 69
    "shortDescription": "Save telemetry log even if vehicle was not armed",
    "longDescription":  "If this option is enabled a telemtry log will be saved even if vehicle was never armed.",
70 71 72 73 74 75 76 77 78
    "type":             "bool",
    "defaultValue":     false
},
{
    "name":             "AudioMuted",
    "shortDescription": "Mute audio output",
    "longDescription":  "If this option is enabled all audio output will be muted.",
    "type":             "bool",
    "defaultValue":     false
79 80 81 82 83 84 85 86
},
{
    "name":             "VirtualTabletJoystick",
    "shortDescription": "Show virtual joystick",
    "longDescription":  "If this option is enabled the virtual joystick will be shown on the Fly view.",
    "type":             "bool",
    "defaultValue":     false
},
87 88 89 90 91 92 93
{
    "name":             "AutoLoadMissions",
    "shortDescription": "AutoLoad mission on vehicle connect",
    "longDescription":  "Automatically load a mission file named AutoLoad#.mission when a vehicle with id # connects.",
    "type":             "bool",
    "defaultValue":     false
},
94 95
{
    "name":             "BaseDeviceFontPointSize",
96 97
    "shortDescription": "Application font size",
    "longDescription":  "The point size for the default font used.",
98 99 100 101 102 103 104 105
    "type":             "uint32",
    "units":            "pt",
    "min":              6,
    "max":              48,
    "defaultValue":     0
},
{
    "name":             "StyleIsDark",
106 107
    "shortDescription": "Application color scheme",
    "longDescription":  "The color scheme for the user interface.",
108 109
    "type":             "uint32",
    "enumStrings":      "Indoor,Outdoor",
Don Gagne's avatar
Don Gagne committed
110 111
    "enumValues":       "1,0",
    "defaultValue":     0
112 113 114 115 116 117 118
},
{
    "name":             "ShowLargeCompass",
    "shortDescription": "Show large compass",
    "longDescription":  "Show large compass on instrument panel",
    "type":             "bool",
    "defaultValue":     false
119 120
},
{
121 122 123
    "name":             "SavePath",
    "shortDescription": "Application save directory",
    "longDescription":  "Directory to which all data files  are saved/loaded from",
124 125
    "type":             "string",
    "defaultValue":     ""
126 127
}
]