0% found this document useful (0 votes)
4 views25 pages

Function Pushbutton1

This document provides examples of how to control a Copter drone in GUIDED mode using Python and DroneKit. It describes functions to arm the vehicle, take off to a target altitude, condition yaw to change heading, and set the region of interest (ROI) for camera aiming. The full set of available guided mode commands are also listed.

Uploaded by

rahbi.malek
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views25 pages

Function Pushbutton1

This document provides examples of how to control a Copter drone in GUIDED mode using Python and DroneKit. It describes functions to arm the vehicle, take off to a target altitude, condition yaw to change heading, and set the region of interest (ROI) for camera aiming. The full set of available guided mode commands are also listed.

Uploaded by

rahbi.malek
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

usr/bin/env python/!

-*- coding: utf-8 -*- #

"""

.Copyright 2015-2016, 3D Robotics ©

guided_set_speed_yaw.py: (Copter Only)

This example shows how to move/direct Copter and send commands in GUIDED mode using
DroneKit Python.

Example documentation: [Link]

"""

from __future__ import print_function

from dronekit import connect, VehicleMode, LocationGlobal, LocationGlobalRelative

from pymavlink import mavutil # Needed for command message definitions

import time

import math

Set up option parsing to get connection string#

import argparse

parser = [Link](description='Control Copter and send commands in GUIDED


mode ')

parser.add_argument('--connect',

help="Vehicle connection target string. If not specified, SITL automatically started and
)".used

args = parser.parse_args()
connection_string = [Link]

sitl = None

Start SITL if no connection string specified #

if not connection_string:

import dronekit_sitl

)(sitl = dronekit_sitl.start_default

)(connection_string = sitl.connection_string

Connect to the Vehicle #

print('Connecting to vehicle on: %s' % connection_string)

vehicle = connect(connection_string, wait_ready=True)

def arm_and_takeoff(aTargetAltitude):

"""

.Arms vehicle and fly to aTargetAltitude

"""

print("Basic pre-arm checks")

Don't let the user try to arm until autopilot is ready #

:while not vehicle.is_armable

print(" Waiting for vehicle to initialise...")

[Link](1)
print("Arming motors")

Copter should arm in GUIDED mode #

[Link] = VehicleMode("GUIDED")

[Link] = True

:while not [Link]

print(" Waiting for arming...")

[Link](1)

print("Taking off!")

vehicle.simple_takeoff(aTargetAltitude) # Take off to target altitude

Wait until the vehicle reaches a safe height before processing the goto (otherwise the #
command

.)after Vehicle.simple_takeoff will execute immediately #

:while True

print(" Altitude: ", [Link].global_relative_frame.alt)

if [Link].global_relative_frame.alt>=aTargetAltitude*0.95: #Trigger just below target


.alt

print("Reached target altitude")

break

[Link](1)

Arm and take of to altitude of 5 meters#

arm_and_takeoff(5)
"""

Convenience functions for sending immediate/guided mode commands to control the Copter.

The set of commands demonstrated here include:

MAV_CMD_CONDITION_YAW - set direction of the front of the Copter (latitude, longitude) *

MAV_CMD_DO_SET_ROI - set direction where the camera gimbal is aimed (latitude, longitude, *
altitude)

.MAV_CMD_DO_CHANGE_SPEED - set target speed in metres/second *

The full set of available commands are listed here:

/[Link]

"""

def condition_yaw(heading, relative=False):

"""

.Send MAV_CMD_CONDITION_YAW message to point vehicle at a specified heading (in degrees)

This method sets an absolute heading by default, but you can set the `relative` parameter

.to `True` to set yaw relative to the current yaw heading

By default the yaw of the vehicle will follow the direction of travel. After setting

the yaw using this function there is no way to return to the default yaw "follow direction

of travel" behaviour ([Link]

:For more information see


[Link]
#mav_cmd_condition_yaw

"""

:if relative

is_relative = 1 #yaw relative to direction of travel

:else

is_relative = 0 #yaw is an absolute angle

)(create the CONDITION_YAW command using command_long_encode #

(msg = vehicle.message_factory.command_long_encode

target system, target component # ,0 ,0

[Link].MAV_CMD_CONDITION_YAW, #command

confirmation# ,0

heading, # param 1, yaw in degrees

param 2, yaw speed deg/s # ,0

param 3, direction -1 ccw, 1 cw # ,1

is_relative, # param 4, relative offset 1, absolute angle 0

param 5 ~ 7 not used # )0 ,0 ,0

send command to vehicle #

vehicle.send_mavlink(msg)

def set_roi(location):

"""

Send MAV_CMD_DO_SET_ROI message to point camera gimbal at a

.specified region of interest (LocationGlobal)

.The vehicle may also turn to face the ROI

:For more information see


[Link]
#mav_cmd_do_set_roi

"""

create the MAV_CMD_DO_SET_ROI command #

(msg = vehicle.message_factory.command_long_encode

target system, target component # ,0 ,0

[Link].MAV_CMD_DO_SET_ROI, #command

confirmation# ,0

params 1-4# ,0 ,0 ,0 ,0

,[Link]

,[Link]

[Link]

send command to vehicle #

vehicle.send_mavlink(msg)

"""

Functions to make it easy to convert between the different frames-of-reference. In particular these

make it easy to navigate in terms of "metres from the current position" when using commands that
take

absolute positions in decimal degrees.

The methods are approximations only, and may be less accurate over longer distances, and when
close

.to the Earth's poles

Specifically, it provides:
get_location_metres - Get LocationGlobal (decimal degrees) at distance (m) North & East of a given *
.LocationGlobal

get_distance_metres - Get the distance between two LocationGlobal objects in metres *

get_bearing - Get the bearing in degrees to a LocationGlobal *

"""

def get_location_metres(original_location, dNorth, dEast):

"""

Returns a LocationGlobal object containing the latitude/longitude `dNorth` and `dEast` metres
from the

specified `original_location`. The returned LocationGlobal has the same `alt` value

.`as `original_location

The function is useful when you want to move the vehicle around specifying locations relative to

.the current vehicle position

The algorithm is relatively accurate over small distances (10m within 1km) except close to the
.poles

:For more information see

[Link]
some-amount-of-meters

"""

earth_radius = 6378137.0 #Radius of "spherical" earth

Coordinate offsets in radians#

dLat = dNorth/earth_radius

dLon = dEast/(earth_radius*[Link]([Link]*original_location.lat/180))

New position in decimal degrees#


newlat = original_location.lat + (dLat * 180/[Link])

newlon = original_location.lon + (dLon * 180/[Link])

:if type(original_location) is LocationGlobal

targetlocation=LocationGlobal(newlat, newlon,original_location.alt)

:elif type(original_location) is LocationGlobalRelative

targetlocation=LocationGlobalRelative(newlat, newlon,original_location.alt)

:else

raise Exception("Invalid Location object passed")

;return targetlocation

def get_distance_metres(aLocation1, aLocation2):

"""

.Returns the ground distance in metres between two LocationGlobal objects

This method is an approximation, and will not be accurate over large distances and close to the

:earth's poles. It comes from the ArduPilot test code

[Link]

"""

dlat = [Link] - [Link]

dlong = [Link] - [Link]

return [Link]((dlat*dlat) + (dlong*dlong)) * 1.113195e5

def get_bearing(aLocation1, aLocation2):

"""

.Returns the bearing between the two LocationGlobal objects passed as parameters
This method is an approximation, and may not be accurate over large distances and close to the

:earth's poles. It comes from the ArduPilot test code

[Link]

"""

off_x = [Link] - [Link]

off_y = [Link] - [Link]

bearing = 90.00 + math.atan2(-off_y, off_x) * 57.2957795

:if bearing < 0

bearing += 360.00

;return bearing

"""

Functions to move the vehicle to a specified position (as opposed to controlling movement by setting
velocity components).

The methods include:

goto_position_target_global_int - Sets position using SET_POSITION_TARGET_GLOBAL_INT *


command in

MAV_FRAME_GLOBAL_RELATIVE_ALT_INT frame

goto_position_target_local_ned - Sets position using SET_POSITION_TARGET_LOCAL_NED *


command in

MAV_FRAME_BODY_NED frame

goto - A convenience function that can use Vehicle.simple_goto (default) or *

goto_position_target_global_int to travel to a specific position in metres

.North and East from the current location

.This method reports distance to the destination


"""

def goto_position_target_global_int(aLocation):

"""

Send SET_POSITION_TARGET_GLOBAL_INT command to request the vehicle fly to a specified


.LocationGlobal

For more information see:


[Link]

.See the above link for information on the type_mask (0=enable, 1=ignore)

.At time of writing, acceleration and yaw bits are ignored

"""

(msg = vehicle.message_factory.set_position_target_global_int_encode

time_boot_ms (not used) # ,0

target system, target component # ,0 ,0

[Link].MAV_FRAME_GLOBAL_RELATIVE_ALT_INT, # frame

0b0000111111111000, # type_mask (only speeds enabled)

[Link]*1e7, # lat_int - X Position in WGS84 frame in 1e7 * meters

[Link]*1e7, # lon_int - Y Position in WGS84 frame in 1e7 * meters

[Link], # alt - Altitude in meters in AMSL altitude, not WGS84 if absolute or relative,
above terrain if GLOBAL_TERRAIN_ALT_INT

X velocity in NED frame in m/s # ,0

Y velocity in NED frame in m/s # ,0

Z velocity in NED frame in m/s # ,0

afx, afy, afz acceleration (not supported yet, ignored in GCS_Mavlink) # ,0 ,0 ,0

yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) # )0 ,0

send command to vehicle #

vehicle.send_mavlink(msg)
def goto_position_target_local_ned(north, east, down):

"""

Send SET_POSITION_TARGET_LOCAL_NED command to request the vehicle fly to a specified

.location in the North, East, Down frame

It is important to remember that in this frame, positive altitudes are entered as negative

.Down" values. So if down is "10", this will be 10 metres below the home altitude "

Starting from AC3.3 the method respects the frame setting. Prior to that the frame was

:ignored. For more information see

[Link]

.See the above link for information on the type_mask (0=enable, 1=ignore)

.At time of writing, acceleration and yaw bits are ignored

"""

(msg = vehicle.message_factory.set_position_target_local_ned_encode

time_boot_ms (not used) # ,0

target system, target component # ,0 ,0

[Link].MAV_FRAME_LOCAL_NED, # frame

0b0000111111111000, # type_mask (only positions enabled)

north, east, down, # x, y, z positions (or North, East, Down in the MAV_FRAME_BODY_NED
frame

x, y, z velocity in m/s (not used) # ,0 ,0 ,0


x, y, z acceleration (not supported yet, ignored in GCS_Mavlink) # ,0 ,0 ,0

yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) # )0 ,0

send command to vehicle #

vehicle.send_mavlink(msg)

def goto(dNorth, dEast, gotoFunction=vehicle.simple_goto):

"""

Moves the vehicle to a position dNorth metres North and dEast metres East of the current
.position

The method takes a function pointer argument with a single `[Link]`


parameter for

.the target position. This allows it to be called with different position-setting commands

.)(By default it uses the standard method: [Link].simple_goto

.The method reports the distance to target every two seconds

"""

currentLocation = [Link].global_relative_frame

targetLocation = get_location_metres(currentLocation, dNorth, dEast)

targetDistance = get_distance_metres(currentLocation, targetLocation)

gotoFunction(targetLocation)

print "DEBUG: targetLocation: %s" % targetLocation#

print "DEBUG: targetLocation: %s" % targetDistance#


.while [Link]=="GUIDED": #Stop action if we are no longer in guided mode

print "DEBUG: mode: %s" % [Link] #

remainingDistance=get_distance_metres([Link].global_relative_frame,
targetLocation)

print("Distance to target: ", remainingDistance)

.if remainingDistance<=targetDistance*0.01: #Just below target, in case of undershoot

print("Reached target")

;break

[Link](2)

"""

Functions that move the vehicle by specifying the velocity components in each direction.

The two functions use different MAVLink commands. The main difference is

that depending on the frame used, the NED velocity can be relative to the vehicle

.orientation

The methods include:

send_ned_velocity - Sets velocity components using SET_POSITION_TARGET_LOCAL_NED *


command

send_global_velocity - Sets velocity components using SET_POSITION_TARGET_GLOBAL_INT *


command

"""

def send_ned_velocity(velocity_x, velocity_y, velocity_z, duration):

"""

Move vehicle in direction based on specified velocity vectors and

.for the specified duration


This uses the SET_POSITION_TARGET_LOCAL_NED command with a type mask enabling only

velocity components

(
.)[Link]

Note that from AC3.3 the message should be re-sent every second (after about 3 seconds

with no message the velocity will drop back to zero). In AC3.2.1 and earlier the specified

velocity persists until it is canceled. The code below should work on either version

.)sending the message multiple times does not cause problems(

.See the above link for information on the type_mask (0=enable, 1=ignore)

.At time of writing, acceleration and yaw bits are ignored

"""

(msg = vehicle.message_factory.set_position_target_local_ned_encode

time_boot_ms (not used) # ,0

target system, target component # ,0 ,0

[Link].MAV_FRAME_LOCAL_NED, # frame

0b0000111111000111, # type_mask (only speeds enabled)

x, y, z positions (not used) # ,0 ,0 ,0

velocity_x, velocity_y, velocity_z, # x, y, z velocity in m/s

x, y, z acceleration (not supported yet, ignored in GCS_Mavlink) # ,0 ,0 ,0

yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) # )0 ,0

send command to vehicle on 1 Hz cycle #

:for x in range(0,duration)

vehicle.send_mavlink(msg)

[Link](1)
def send_global_velocity(velocity_x, velocity_y, velocity_z, duration):

"""

.Move vehicle in direction based on specified velocity vectors

This uses the SET_POSITION_TARGET_GLOBAL_INT command with type mask enabling only

velocity components

(
.)[Link]

Note that from AC3.3 the message should be re-sent every second (after about 3 seconds

with no message the velocity will drop back to zero). In AC3.2.1 and earlier the specified

velocity persists until it is canceled. The code below should work on either version

.)sending the message multiple times does not cause problems(

.See the above link for information on the type_mask (0=enable, 1=ignore)

.At time of writing, acceleration and yaw bits are ignored

"""

(msg = vehicle.message_factory.set_position_target_global_int_encode

time_boot_ms (not used) # ,0

target system, target component # ,0 ,0

[Link].MAV_FRAME_GLOBAL_RELATIVE_ALT_INT, # frame

0b0000111111000111, # type_mask (only speeds enabled)

lat_int - X Position in WGS84 frame in 1e7 * meters # ,0

lon_int - Y Position in WGS84 frame in 1e7 * meters # ,0


alt - Altitude in meters in AMSL altitude(not WGS84 if absolute or relative) # ,0

altitude above terrain if GLOBAL_TERRAIN_ALT_INT #

velocity_x, # X velocity in NED frame in m/s

velocity_y, # Y velocity in NED frame in m/s

velocity_z, # Z velocity in NED frame in m/s

afx, afy, afz acceleration (not supported yet, ignored in GCS_Mavlink) # ,0 ,0 ,0

yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) # )0 ,0

send command to vehicle on 1 Hz cycle #

:for x in range(0,duration)

vehicle.send_mavlink(msg)

[Link](1)

"""

Fly a triangular path using the standard Vehicle.simple_goto() method.

The method is called indirectly via a custom "goto" that allows the target position to be

specified as a distance in metres (North/East) from the current position, and which reports

the distance-to-target.

"""

print("TRIANGLE path using standard Vehicle.simple_goto()")

print("Set groundspeed to 5m/s.")

[Link]=5

print("Position North 80 West 50")


goto(80, -50)

print("Position North 0 East 100")

goto(0, 100)

print("Position North -80 West 50")

goto(-80, -50)

"""

Fly a triangular path using the SET_POSITION_TARGET_GLOBAL_INT command and specifying

a target position (rather than controlling movement using velocity vectors). The command is

called from goto_position_target_global_int() (via `goto`).

The goto_position_target_global_int method is called indirectly from a custom "goto" that allows

,the target position to be specified as a distance in metres (North/East) from the current position

and which reports the distance-to-target.

The code also sets the speed (MAV_CMD_DO_CHANGE_SPEED). In AC3.2.1 Copter will accelerate to
this speed

.near the centre of its journey and then decelerate as it reaches the target

In AC3.3 the speed changes immediately.

"""

print("TRIANGLE path using standard SET_POSITION_TARGET_GLOBAL_INT message and with


varying speed.")

print("Position South 100 West 130")


print("Set groundspeed to 5m/s.")

[Link] = 5

goto(-100, -130, goto_position_target_global_int)

print("Set groundspeed to 15m/s (max).")

[Link] = 15

print("Position South 0 East 200")

goto(0, 260, goto_position_target_global_int)

print("Set airspeed to 10m/s (max).")

[Link] = 10

print("Position North 100 West 130")

goto(100, -130, goto_position_target_global_int)

"""

Fly the vehicle in a 50m square path, using the SET_POSITION_TARGET_LOCAL_NED command

.and specifying a target position (rather than controlling movement using velocity vectors)

The command is called from goto_position_target_local_ned() (via `goto`).

The position is specified in terms of the NED (North East Down) relative to the Home location.

WARNING: The "D" in NED means "Down". Using a positive D value will drive the vehicle into the
ground!
The code sleeps for a time (DURATION) to give the vehicle time to reach each position (rather than

.)sending commands based on proximity

The code also sets the region of interest (MAV_CMD_DO_SET_ROI) via the `set_roi()` method. This
points the

camera gimbal at the the selected location (in this case it aligns the whole vehicle to point at the
.ROI)

"""

print("SQUARE path using SET_POSITION_TARGET_LOCAL_NED and position parameters")

.DURATION = 20 #Set duration for each segment

print("North 50m, East 0m, 10m altitude for %s seconds" % DURATION)

goto_position_target_local_ned(50,0,-10)

print("Point ROI at current location (home position)")

NOTE that this has to be called after the goto command as first "move" command of a particular #
type

resets" ROI/YAW commands" #

set_roi([Link].global_relative_frame)

[Link](DURATION)

print("North 50m, East 50m, 10m altitude")

goto_position_target_local_ned(50,50,-10)

[Link](DURATION)

print("Point ROI at current location")

set_roi([Link].global_relative_frame)

print("North 0m, East 50m, 10m altitude")


goto_position_target_local_ned(0,50,-10)

[Link](DURATION)

print("North 0m, East 0m, 10m altitude")

goto_position_target_local_ned(0,0,-10)

[Link](DURATION)

"""

Fly the vehicle in a SQUARE path using velocity vectors (the underlying code calls the

.)SET_POSITION_TARGET_LOCAL_NED command with the velocity parameters enabled

The thread sleeps for a time (DURATION) which defines the distance that will be travelled.

The code also sets the yaw (MAV_CMD_CONDITION_YAW) using the `set_yaw()` method in each
segment

so that the front of the vehicle points in the direction of travel

"""

.Set up velocity vector to map to each direction#

vx > 0 => fly North #

vx < 0 => fly South #

NORTH = 2

SOUTH = -2

:Note for vy #
vy > 0 => fly East #

vy < 0 => fly West #

EAST = 2

WEST = -2

:Note for vz #

vz < 0 => ascend #

vz > 0 => descend #

UP = -0.5

DOWN = 0.5

Square path using velocity #

print("SQUARE path using SET_POSITION_TARGET_LOCAL_NED and velocity parameters")

print("Yaw 180 absolute (South)")

condition_yaw(180)

print("Velocity South & up")

send_ned_velocity(SOUTH,0,UP,DURATION)

send_ned_velocity(0,0,0,1)

print("Yaw 270 absolute (West)")

condition_yaw(270)

print("Velocity West & down")


send_ned_velocity(0,WEST,DOWN,DURATION)

send_ned_velocity(0,0,0,1)

print("Yaw 0 absolute (North)")

condition_yaw(0)

print("Velocity North")

send_ned_velocity(NORTH,0,0,DURATION)

send_ned_velocity(0,0,0,1)

print("Yaw 90 absolute (East)")

condition_yaw(90)

print("Velocity East")

send_ned_velocity(0,EAST,0,DURATION)

send_ned_velocity(0,0,0,1)

"""

Fly the vehicle in a DIAMOND path using velocity vectors (the underlying code calls the

.)SET_POSITION_TARGET_GLOBAL_INT command with the velocity parameters enabled

The thread sleeps for a time (DURATION) which defines the distance that will be travelled.

The code sets the yaw (MAV_CMD_CONDITION_YAW) using the `set_yaw()` method using relative
headings
.so that the front of the vehicle points in the direction of travel

At the end of the second segment the code sets a new home location to the current point.

"""

print("DIAMOND path using SET_POSITION_TARGET_GLOBAL_INT and velocity parameters")

vx, vy are parallel to North and East (independent of the vehicle orientation) #

print("Yaw 225 absolute")

condition_yaw(225)

print("Velocity South, West and Up")

send_global_velocity(SOUTH,WEST,UP,DURATION)

send_global_velocity(0,0,0,1)

print("Yaw 90 relative (to previous yaw heading)")

condition_yaw(90,relative=True)

print("Velocity North, West and Down")

send_global_velocity(NORTH,WEST,DOWN,DURATION)

send_global_velocity(0,0,0,1)

print("Set new home location to current location")

vehicle.home_location=[Link].global_frame

print("Get new home location")

This reloads the home location in DroneKit and GCSs#


cmds = [Link]

)([Link]

cmds.wait_ready()

print(" Home Location: %s" % vehicle.home_location)

print("Yaw 90 relative (to previous yaw heading)")

condition_yaw(90,relative=True)

print("Velocity North and East")

send_global_velocity(NORTH,EAST,0,DURATION)

send_global_velocity(0,0,0,1)

print("Yaw 90 relative (to previous yaw heading)")

condition_yaw(90,relative=True)

print("Velocity South and East")

send_global_velocity(SOUTH,EAST,0,DURATION)

send_global_velocity(0,0,0,1)

"""

The example is completing. LAND at current location.

"""

print("Setting LAND mode...")


[Link] = VehicleMode("LAND")

Close vehicle object before exiting script#

print("Close vehicle object")

)([Link]

.Shut down simulator if it was started #

if sitl is not None:

)([Link]

print("Completed")

You might also like