Difference between revisions of "Flight Plan Examples"

From PaparazziUAV
Jump to navigation Jump to search
Line 3: Line 3:
== Takeoff ==
== Takeoff ==


<tt>
<block key="t" name="Takeoff" strip_button="Takeoff" strip_icon="takeoff.png">
<block key="t" name="Takeoff" strip_button="Takeoff" strip_icon="takeoff.png">
       <set value="0" var="kill_throttle"/>
       <set value="0" var="kill_throttle"/>
Line 8: Line 9:
       <go from="HOME" pitch="-10" throttle="1.0" vmode="throttle" wp="CLIMB"/>
       <go from="HOME" pitch="-10" throttle="1.0" vmode="throttle" wp="CLIMB"/>
</block>
</block>
</tt>


Explanation of the code - left to right, top to bottom.
Explanation of the code - left to right, top to bottom.

Revision as of 05:40, 3 May 2010

This page will detail a number of flight plan examples.

Takeoff

<block key="t" name="Takeoff" strip_button="Takeoff" strip_icon="takeoff.png">

     <set value="0" var="kill_throttle"/>
     <set value="0" var="estimator_flight_time"/>
     <go from="HOME" pitch="-10" throttle="1.0" vmode="throttle" wp="CLIMB"/>

</block>

Explanation of the code - left to right, top to bottom.

key="t" - Not sure what this does - SOMEONE PLEASE UPDATE

name="Takeoff" - the name of the block

strip_button="Takeoff" - This shows as the name when you hover your mouse over the button

strip_icon="takeoff.png" - The name of the icon picture shown in the GCS

<set value="0" var="kill_throttle"/> - This turns on the option to change the throttle

<set value="0" var="estimator_flight_time"/> - This turns on the flight time estimator

<go from="HOME" pitch="-10" throttle="1.0" vmode="throttle" wp="CLIMB"/> - This says for the aircraft to go from "HOME" waypoint towards "CLIMB" waypoint with a pitch of -10 and throttle at 100%. I am not sure what vmode="throttle" means.

Structure of the flight plan file