MavCmdInfoFixedWing.json 5.14 KB
Newer Older
1 2 3
{
    "version": 1,
    "mavCmdInfo": [
4 5 6 7 8 9 10 11 12 13
        {
            "id": 16,
            "rawName": "MAV_CMD_NAV_WAYPOINT",
            "friendlyName": "Waypoint",
            "description": "Travel to a position in 3D space.",
            "specifiesCoordinate": true,
            "friendlyEdit": true,
            "category": "Basic",
            "param1": {
                "label": "Hold:",
14
                "units": "secs",
15 16 17 18 19
                "default": 0,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
20
                "units": "m",
21 22 23 24 25 26 27 28 29 30 31 32 33 34
                "default": 50,
                "decimalPlaces": 0
            }
        },
        {
            "id": 17,
            "rawName": "MAV_CMD_NAV_LOITER_UNLIM",
            "friendlyName": "Loiter",
            "description": "Travel to a position and Loiter around the specified radius indefinitely.",
            "specifiesCoordinate": true,
            "friendlyEdit": true,
            "category": "Loiter",
            "param3": {
                "label": "Radius:",
35
                "units": "m",
36 37 38 39 40
                "default": 100,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
41
                "units": "m",
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
                "default": 50,
                "decimalPlaces": 0
            }
        },
        {
            "id": 18,
            "rawName": "MAV_CMD_NAV_LOITER_TURNS",
            "friendlyName": "Loiter (turns)",
            "description": "Travel to a position and Loiter around the specified radius for a number of turns.",
            "specifiesCoordinate": true,
            "friendlyEdit": true,
            "category": "Loiter",
            "param1": {
                "label": "Turns:",
                "default": 1,
                "decimalPlaces": 0
            },
            "param3": {
                "label": "Radius:",
61
                "units": "m",
62 63 64 65 66
                "default": 100,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
67
                "units": "m",
68 69 70 71 72 73 74 75 76 77 78 79 80 81
                "default": 50,
                "decimalPlaces": 0
            }
        },
        {
            "id": 19,
            "rawName": "MAV_CMD_NAV_LOITER_TIME",
            "friendlyName": "Loiter (time)",
            "description": "Travel to a position and Loiter around the specified radius for a number of seconds.",
            "specifiesCoordinate": true,
            "friendlyEdit": true,
            "category": "Loiter",
            "param1": {
                "label": "Seconds:",
82
                "units": "secs",
83 84 85 86 87
                "default": 30,
                "decimalPlaces": 1
            },
            "param3": {
                "label": "Radius:",
88
                "units": "m",
89 90 91 92 93
                "default": 100,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
94
                "units": "m",
95 96 97 98 99 100 101 102 103 104 105 106 107 108
                "default": 50,
                "decimalPlaces": 0
            }
        },
        {
            "id": 21,
            "rawName": "MAV_CMD_NAV_LAND",
            "friendlyName": "Land",
            "description": "Land vehicle at the specified location.",
            "specifiesCoordinate": true,
            "friendlyEdit": true,
            "category": "Basic",
            "param1": {
                "label": "Abort Alt:",
109
                "units": "m",
110 111 112 113 114 115 116 117 118 119 120
                "default": 25,
                "decimalPlaces": 0
            },
            "param4": {
                "label": "Heading:",
                "units": "radians",
                "default": 0,
                "decimalPlaces": 2
            },
            "param7": {
                "label": "Altitude:",
121
                "units": "m",
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
                "default": 0,
                "decimalPlaces": 1
            }
        },
        {
            "id": 22,
            "rawName": "MAV_CMD_NAV_TAKEOFF",
            "friendlyName": "Takeoff",
            "description": "Take off from the ground and travel towards the specified position.",
            "specifiesCoordinate": true,
            "friendlyEdit": true,
            "category": "Basic",
            "param1": {
                "label": "Pitch:",
                "units": "degrees",
                "default": 0,
                "decimalPlaces": 0
            },
            "param4": {
                "label": "Heading:",
                "units": "radians",
                "default": 0,
                "decimalPlaces": 1
            },
            "param7": {
                "label": "Altitude:",
148
                "units": "m",
149 150 151 152 153 154 155 156 157 158 159 160 161
                "default": 25,
                "decimalPlaces": 0
            }
        },
        {
            "id":           206,
            "rawName":      "MAV_CMD_DO_SET_CAM_TRIGG_DIST",
            "friendlyName": "Camera trigger distance",
            "description":  "Set camera trigger distance.",
            "category":     "Camera",
            "param1": {
                "label":            "Distance:",
                "default":          25,
162
                "units":            "m",
163 164 165
                "decimalPlaces":    1
            }
        }
166 167
    ]
}