-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBasic Movements Code.py
More file actions
51 lines (46 loc) · 1.23 KB
/
Basic Movements Code.py
File metadata and controls
51 lines (46 loc) · 1.23 KB
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
# Code for basic movements
# Code for basic movements
#Propeller A : Top Left
#Propeller B : Top Right
#Propeller C : Bottom Left
#Propeller D : Bottom Right
key_pressed = input
def up:
# It should increase the rotation speed of propellers
#move up
pass
def down:
# It should decrease the rotation speed of propellers
if key_pressed == "I":
#move down
pass
def roll_left:
# It should increase the rotation speed of right propellers
if key_pressed == "A":
#turn left
pass
def roll_right:
# It should increase the rotation speed of left propellers
if key_pressed == "D":
#turn right
pass
def forward:
# It should increase the rotation speed of back propellers
if key_pressed == "W":
#move forward
pass
def backward:
# It should increase the rotation speed of front propellers
if key_pressed == "S":
#move backward
pass
def yaw_right:
# It should increase the rotation speed of diagonal propellers (A and D)
if key_pressed == "E":
#spin right about z axis
pass
def yaw_left:
pass
# It should increase the rotation speed of diagonal propellers (B and C)
if key_pressed == "R":
#spin left about z axis