MavCmdInfoCommon.json 1.74 KB
Newer Older
1 2 3 4
{
    "version": 1,

    "mavCmdInfo": [
5 6 7 8 9 10 11 12 13 14
        {
            "id":                   22,
            "rawName":              "MAV_CMD_NAV_TAKEOFF",
            "friendlyName":         "Takeoff",
            "description":          "Take off from the ground.",
            "specifiesCoordinate":  false,
            "friendlyEdit":         true,
            "category":             "Basic",
            "param1": {
                "label":            "Pitch:",
15 16 17 18 19 20 21 22
                "units":            "degrees",
                "default":          15,
                "decimalPlaces":    2
            },
            "param7": {
                "label":            "Altitude:",
                "units":            "meters",
                "default":          25.0,
23 24
                "decimalPlaces":    2
            }
Don Gagne's avatar
Don Gagne committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
        },
        {
            "id":                   84,
            "rawName":              "MAV_CMD_NAV_VTOL_TAKEOFF",
            "friendlyName":         "VTOL takeoff",
            "description":          "Takeoff from ground using VTOL mode.",
            "specifiesCoordinate":  true,
            "friendlyEdit":         true,
            "category":             "VTOL"
        },
        {
            "id":                   85,
            "rawName":              "MAV_CMD_NAV_VTOL_LAND",
            "friendlyName":         "VTOL land",
            "description":          "Land using VTOL mode.",
            "specifiesCoordinate":  true,
            "friendlyEdit":         true,
42 43 44 45 46 47 48
            "category":             "VTOL",
            "param7": {
                "label":            "Altitude:",
                "units":            "meters",
                "default":          0.0,
                "decimalPlaces":    2
            }
49
        }
50 51
    ]
}