Objective - Learning computer science skills and the Python programming language in a team setting to control a Tello EDU minidrone
Research Flights and Codes
Objective - Learning computer science skills and the Python programming language in a team setting to control a Tello EDU minidrone
Challenge Flights
In this code, you can choose whether or not the drone flips or not. You enter how far (in centimeters) you want to go and your name and it will confirm with what you typed. It will then take off and go forward how far you wanted it to go. It will then ask you if you would like it to flip. You can type "Yes" or "yes" (since the terminal and the code are case sensitive) and it will flip forward in the front. If you say anything else, it will land.
In this octagon shape, I am using a for loop which means it repeats itself. It goes through 8 times since an octagon has 8 sides. This code takes off, rotates and goes forward, and then disconnects.
I chose to make a pentagon in this code. It is made with the for loop as well since it needs to repeat 5 times. It takes off, rotates and goes forward, and then disconnects.
In this code, we had to land through hoops. What my partner and I did was take off, go forward, rotate 90 degrees, and then go forward and land in the hoop.
In this code, you can choose however many sides you want! If you wanted to have 100 sides, you will get 100 sides. This will happen as long as it is 3 or more sides since this code is for making polygons.