forked from alduxvm/DronePilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmw-waypoint.py
253 lines (215 loc) · 10.4 KB
/
mw-waypoint.py
1
2
3
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#!/usr/bin/env python
""" Drone Pilot - Control of MRUAV """
""" mw-waypoint.py: Script that sends commands to a MultiWii vehicle to follow
several waypoints inside the laboratory.
"""
__author__ = "Aldo Vargas"
__copyright__ = "Copyright 2016 Altax.net"
__license__ = "GPL"
__version__ = "1.2"
__maintainer__ = "Aldo Vargas"
__email__ = "alduxvm@gmail.com"
__status__ = "Development"
import time, datetime, csv, threading
from math import *
from modules.utils import *
from modules.pyMultiwii import MultiWii
import modules.UDPserver as udp
# Main configuration
logging = True
update_rate = 0.01 # 100 hz loop cycle
vehicle_weight = 0.84 # Kg
u0 = 1000 # Zero throttle command
uh = 1360 # Hover throttle command
kt = vehicle_weight * g / (uh-u0)
ky = 500 / pi # Yaw controller gain
# MRUAV initialization
vehicle = MultiWii("/dev/ttyUSB0")
vehicle.getData(MultiWii.ATTITUDE)
# Position coordinates [x, y, x]
desiredPos = {'x':0.0, 'y':0.0, 'z':1.0} # Set at the beginning (for now...)
currentPos = {'x':0.0, 'y':0.0, 'z':0.0} # It will be updated using UDP
# Initialize RC commands and pitch/roll to be sent to the MultiWii
rcCMD = [1500,1500,1500,1000]
desiredRoll = 1500
desiredPitch = 1500
desiredThrottle = 1000
desiredYaw = 1500
mode = 'Manual'
changeWP = False
# Controller PID's gains (Gains are considered the same for pitch and roll)
p_gains = {'kp': 2.61, 'ki':0.57, 'kd':3.41, 'iMax':2, 'filter_bandwidth':50} # Position Controller gains
h_gains = {'kp': 4.64, 'ki':1.37, 'kd':4.55, 'iMax':2, 'filter_bandwidth':50} # Height Controller gains
y_gains = {'kp': 1.0, 'ki':0.0, 'kd':0.0, 'iMax':2, 'filter_bandwidth':50} # Yaw Controller gains
# PID modules initialization
rollPID = PID(p_gains['kp'], p_gains['ki'], p_gains['kd'], p_gains['filter_bandwidth'], 0, 0, update_rate, p_gains['iMax'], -p_gains['iMax'])
rPIDvalue = 0.0
pitchPID = PID(p_gains['kp'], p_gains['ki'], p_gains['kd'], p_gains['filter_bandwidth'], 0, 0, update_rate, p_gains['iMax'], -p_gains['iMax'])
pPIDvalue = 0.0
heightPID = PID(h_gains['kp'], h_gains['ki'], h_gains['kd'], h_gains['filter_bandwidth'], 0, 0, update_rate, h_gains['iMax'], -h_gains['iMax'])
hPIDvalue = 0.0
yawPID = PID(y_gains['kp'], y_gains['ki'], y_gains['kd'], y_gains['filter_bandwidth'], 0, 0, update_rate, y_gains['iMax'], -y_gains['iMax'])
yPIDvalue = 0.0
# Filters initialization
f_yaw = low_pass(20,update_rate)
f_pitch = low_pass(20,update_rate)
f_roll = low_pass(20,update_rate)
# Function that calculates distance between current position and desired and informs if the target has been reach.
# Waypoint variable is of the form: wp = {'x':0.0, 'y':0.0, 'z':1.0}
def go_to(target):
global desiredPos, currentPos
global rollPID, pitchPID, heightPID
global changeWP
timeout = 20
min_distance = 0.07
start = time.time()
# Update flag to change WP
changeWP = True
while 'Auto' in mode:
current = time.time() - start
distance = sqrt(pow(desiredPos['x'] - currentPos['x'],2) + pow(target['y'] - currentPos['y'],2) + pow(target['z'] - currentPos['z'],2) )
print " > %0.2f Going->[%0.1f, %0.1f, %0.1f], actual->[%0.1f, %0.1f, %0.1f], distance to target = %0.4f" % (current,desiredPos['x'],desiredPos['y'],desiredPos['z'],currentPos['x'],currentPos['y'],currentPos['z'],distance)
if distance <= min_distance:
print " - Reached target location"
changeWP = False
break;
if current >= timeout:
print " - Timeout to reach location"
changeWP = False
break;
time.sleep(0.1)
# Function that will change the desired position according to coordinates defined inside.
def mission():
while True:
# Only start the mission if the vehicle mode is set to Auto, this check
if 'Auto' in mode:
print "Starting automatic mission!!"
time.sleep(1)
wp1 = {'x':0.0, 'y':0.0, 'z':1.0}
print "Travelling to way-point 1: ", wp1
go_to(wp1)
# Maintain current position for certain time
time.sleep(5)
else:
#print "Mode: %s | Z: %0.3f | X: %0.3f | Y: %0.3f " % (mode, currentPos['z'], currentPos['x'], currentPos['y'])
time.sleep(0.5)
# Function to handle the flight management to be called by a thread, it communicates with the vehicle,
# it computes PID corrections and logs data. Is a loop that works at a desired update rate.
def flight_management():
global vehicle, rcCMD
global rollPID, pitchPID, heightPID
global desiredPos, currentPos
global desiredRoll, desiredPitch, desiredThrottle, mode
global rPIDvalue, pPIDvalue
global f_yaw, f_pitch, f_roll
while True:
if udp.active:
print "UDP server is active..."
break
else:
print "Waiting for UDP server to be active..."
time.sleep(0.5)
try:
if logging:
st = datetime.datetime.fromtimestamp(time.time()).strftime('%m_%d_%H-%M-%S')+".csv"
f = open("logs/mw-"+st, "w")
logger = csv.writer(f)
# V -> vehicle | P -> pilot (joystick) | D -> desired position | M -> motion capture | C -> commanded controls
logger.writerow(('timestamp','Vroll','Vpitch','Vyaw','Proll','Ppitch','Pyaw','Pthrottle', \
'x','y','z','Dx','Dy','Dz','Mroll','Mpitch','Myaw','Mode','Croll','Cpitch','Cyaw','Cthrottle'))
while True:
# Variable to time the loop
current = time.time()
elapsed = 0
# Update joystick commands from UDP communication, order (roll, pitch, yaw, throttle)
rcCMD[0] = udp.message[0]
rcCMD[1] = udp.message[1]
rcCMD[2] = udp.message[2]
rcCMD[3] = udp.message[3]
# Coordinate map from Optitrack in the MAST Lab: X, Y, Z. NED: If going up, Z is negative.
######### WALL ########
#Door | x+ |
# | |
# | y+ |
#---------------------|
# y- | |
# | |
# x-| |
#######################
# Update current position of the vehicle
currentPos['x'] = udp.message[4]
currentPos['y'] = udp.message[5]
currentPos['z'] = -udp.message[6]
# Update Attitude
vehicle.getData(MultiWii.ATTITUDE)
# Filter new values before using them
heading = f_yaw.update(udp.message[9])
if changeWP:
desiredPos = {'x':0.0, 'y':0.0, 'z':1.5}
else:
desiredPos = {'x':0.0, 'y':0.0, 'z':1.0}
# PID updating, Roll is for Y and Pitch for X, Z is negative
rPIDvalue = rollPID.update(desiredPos['y'] - currentPos['y'])
pPIDvalue = pitchPID.update(desiredPos['x'] - currentPos['x'])
hPIDvalue = heightPID.update(desiredPos['z'] - currentPos['z'])
yPIDvalue = yawPID.update(0.0 - heading)
# Heading must be in radians, MultiWii heading comes in degrees, optitrack in radians
sinYaw = sin(heading)
cosYaw = cos(heading)
# Conversion from desired accelerations to desired angle commands
desiredRoll = toPWM(degrees( (rPIDvalue * cosYaw + pPIDvalue * sinYaw) * (1 / g) ),1)
desiredPitch = toPWM(degrees( (pPIDvalue * cosYaw - rPIDvalue * sinYaw) * (1 / g) ),1)
desiredThrottle = ((hPIDvalue + g) * vehicle_weight) / (cos(f_pitch.update(radians(vehicle.attitude['angx'])))*cos(f_roll.update(radians(vehicle.attitude['angy']))))
desiredThrottle = (desiredThrottle / kt) + u0
desiredYaw = 1500 - (yPIDvalue * ky)
# Limit commands for safety
if udp.message[7] == 1:
rcCMD[0] = limit(desiredRoll,1000,2000)
rcCMD[1] = limit(desiredPitch,1000,2000)
rcCMD[2] = limit(desiredYaw,1000,2000)
rcCMD[3] = limit(desiredThrottle,1000,2000)
mode = 'Auto'
else:
# Prevent integrators/derivators to increase if they are not in use
rollPID.resetIntegrator()
pitchPID.resetIntegrator()
heightPID.resetIntegrator()
yawPID.resetIntegrator()
mode = 'Manual'
rcCMD = [limit(n,1000,2000) for n in rcCMD]
# Send commands to vehicle
vehicle.sendCMD(8,MultiWii.SET_RAW_RC,rcCMD)
row = (time.time(), \
vehicle.attitude['angx'], vehicle.attitude['angy'], vehicle.attitude['heading'], \
#vehicle.rawIMU['ax'], vehicle.rawIMU['ay'], vehicle.rawIMU['az'], vehicle.rawIMU['gx'], vehicle.rawIMU['gy'], vehicle.rawIMU['gz'], \
#vehicle.rcChannels['roll'], vehicle.rcChannels['pitch'], vehicle.rcChannels['throttle'], vehicle.rcChannels['yaw'], \
udp.message[0], udp.message[1], udp.message[2], udp.message[3], \
currentPos['x'], currentPos['y'], currentPos['z'], desiredPos['x'], desiredPos['y'], desiredPos['z'], \
udp.message[8], udp.message[9], udp.message[10], \
udp.message[7], \
rcCMD[0], rcCMD[1], rcCMD[2], rcCMD[3])
if logging:
logger.writerow(row)
#print "\tMode: %s | Z: %0.3f | X: %0.3f | Y: %0.3f " % (mode, currentPos['z'], currentPos['x'], currentPos['y'])
if 'Manual' in mode:
print "\tMode: %s | Z: %0.3f | X: %0.3f | Y: %0.3f " % (mode, desiredPos['z'], desiredPos['x'], desiredPos['y'])
# Wait until the update_rate is completed
while elapsed < update_rate:
elapsed = time.time() - current
except Exception,error:
print "Error in control thread: "+str(error)
if __name__ == "__main__":
try:
flight_management_thread = threading.Thread(target=flight_management)
flight_management_thread.daemon=True
flight_management_thread.start()
mission_thread = threading.Thread(target=mission)
mission_thread.daemon=True
mission_thread.start()
udp.startTwisted()
except Exception,error:
print "Error on main: "+str(error)
vehicle.ser.close()
except KeyboardInterrupt:
print "Keyboard Interrupt, exiting."
exit()