- 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 GUIDED
arm throttle
takeoff 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 X
overrides roll PWM with X value.X>1500
means roll right.X<1500
means roll left.X=1500
means no roll but still send RC Roll Override message.
rc 2 X
overrides pitch PWM with X value.X>1500
means pitch backward.X<1500
means pitch forward.X=1500
means no pitch but still send RC Pitch Override message.
rc 3 X
overrides throttle PWM with X value.X>1500
means gain altitude in LOITER mode.X<1500
means lower altitude in LOITER mode.X=1500
means maintain altitude in LOITER mode.
rc 4 X
overrides yaw PWM with X value.X>1500
means yaw clockwise.X<1500
means yaw counter-clockwise.X=1500
means no yaw but still send RC Yaw Override message.
- In GUIDED mode, copter can process RC Yaw Override message.