-
Notifications
You must be signed in to change notification settings - Fork 0
/
up_and_down.py
109 lines (90 loc) · 3.28 KB
/
up_and_down.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
import time
from enum import Enum
import numpy as np
from udacidrone import Drone
from udacidrone.connection import MavlinkConnection
from udacidrone.messaging import MsgID
class Phases(Enum):
MANUAL = 0
ARMING = 1
TAKEOFF = 2
LANDING = 3
DISARMING = 4
class UpAndDownFlyer(Drone):
def __init__(self, connection):
super().__init__(connection)
self.target_position = np.array([0.0, 0.0, 0.0])
self.in_mission = True
# initial state
self.flight_phase = Phases.MANUAL
# register all your callbacks here
self.register_callback(MsgID.LOCAL_POSITION,
self.local_position_callback)
self.register_callback(MsgID.LOCAL_VELOCITY,
self.velocity_callback)
self.register_callback(MsgID.STATE,
self.state_callback)
def local_position_callback(self):
if self.flight_phase == Phases.TAKEOFF:
# coordinate conversion
altitude = -1.0 * self.local_position[2]
# check if altitude is within 95% of target
if altitude > 0.95 * self.target_position[2]:
self.landing_transition()
def velocity_callback(self):
if self.flight_phase == Phases.LANDING:
if ((self.global_position[2] - self.global_home[2] < 0.1) and
abs(self.local_position[2]) < 0.01):
self.disarming_transition()
def state_callback(self):
if not self.in_mission:
return
if self.flight_phase == Phases.MANUAL:
self.arming_transition()
elif self.flight_phase == Phases.ARMING:
if self.armed:
self.takeoff_transition()
elif self.flight_phase == Phases.DISARMING:
if not self.armed:
self.manual_transition()
def arming_transition(self):
print("arming transition")
self.take_control()
self.arm()
# set the current location to be the home position
self.set_home_position(self.global_position[0],
self.global_position[1],
self.global_position[2])
self.flight_phase = Phases.ARMING
def takeoff_transition(self):
print("takeoff transition")
target_altitude = 3.0
self.target_position[2] = target_altitude
self.takeoff(target_altitude)
self.flight_phase = Phases.TAKEOFF
def landing_transition(self):
print("landing transition")
self.land()
self.flight_phase = Phases.LANDING
def disarming_transition(self):
print("disarm transition")
self.disarm()
self.flight_phase = Phases.DISARMING
def manual_transition(self):
print("manual transition")
self.release_control()
self.stop()
self.in_mission = False
self.flight_phase = Phases.MANUAL
def start(self):
self.start_log("Logs", "NavLog.txt")
print("starting connection")
super().start()
self.stop_log()
if __name__ == "__main__":
conn = MavlinkConnection('tcp:127.0.0.1:5760',
threaded=False,
PX4=False)
drone = UpAndDownFlyer(conn)
time.sleep(2)
drone.start()