MavCmdInfoFixedWing.json 5.2 KB
Newer Older
1 2 3
{
    "version": 1,
    "mavCmdInfo": [
4 5 6 7 8 9 10 11 12 13 14 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
        {
            "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:",
                "units": "seconds",
                "default": 0,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
                "units": "meters",
                "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:",
                "units": "meters",
                "default": 100,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
                "units": "meters",
                "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:",
                "units": "meters",
                "default": 100,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
                "units": "meters",
                "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:",
                "units": "seconds",
                "default": 30,
                "decimalPlaces": 1
            },
            "param3": {
                "label": "Radius:",
                "units": "meters",
                "default": 100,
                "decimalPlaces": 0
            },
            "param7": {
                "label": "Altitude:",
                "units": "meters",
                "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:",
                "units": "meters",
                "default": 25,
                "decimalPlaces": 0
            },
            "param4": {
                "label": "Heading:",
                "units": "radians",
                "default": 0,
                "decimalPlaces": 2
            },
            "param7": {
                "label": "Altitude:",
                "units": "meters",
                "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:",
                "units": "meters",
                "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,
                "units":            "meters",
                "decimalPlaces":    1
            }
        }
166 167
    ]
}