- Connect to the vehicle using
mavproxy.py --master=127.0.0.1:14550 --load-module="horizon,map,console". - Or after starting MAVProxy,
module load MODULE_NAME, ex:module load horizon. - Let's take off the vehicle to the 50 meters:
mode GUIDEDarm throttletakeoff 50
- Let's get back our vehicle to the ground using
mode LAND. - Let's fly to a location in GUIDED mode using
guided -35.36217477 149.16507393 50. - Let's change the mode to LOITER using
mode LOITER. - By using
rc X Y, MAVProxy periodically send RC Override to channel X with Y PWM value.rc 1 Xoverrides roll PWM with X value.X>1500means roll right.X<1500means roll left.X=1500means no roll but still send RC Roll Override message.
rc 2 Xoverrides pitch PWM with X value.X>1500means pitch backward.X<1500means pitch forward.X=1500means no pitch but still send RC Pitch Override message.
rc 3 Xoverrides throttle PWM with X value.X>1500means gain altitude in LOITER mode.X<1500means lower altitude in LOITER mode.X=1500means maintain altitude in LOITER mode.
rc 4 Xoverrides yaw PWM with X value.X>1500means yaw clockwise.X<1500means yaw counter-clockwise.X=1500means no yaw but still send RC Yaw Override message.
- In GUIDED mode, copter can process RC Yaw Override message.