In your Terminal type “cd C:/” (no quotes)
This should change your directory to your C: Drive.
cd= change directory
Next, type “cd Windows”.
Then type “cd users”. Notice how the folders change.
What happens when you type in “cd ..”?
Navigates “up” a folder from current directory
COLOR 03
cd C:/
cd Drone26
Code Commands
Squares
Take Off
The First Flight
Short Flight
Turning
from KT_Lib.KT_Lib import Tello
import time
drone = Tello()
#Charlie
drone.connect()
print("takeoff")
drone.takeoff()
time.sleep(8)
cm=input("how far do you want to go forward?")
distance = cm
print("forward", cm)
drone.forward("cm")
time.sleep(5)
print("land")
drone.land()
time.sleep(5)
drone.disconnect()
from KT_Lib.KT_Lib import Tello
import time
drone = Tello()
#Charlie
drone.connect()
print("takeoff")
drone.takeoff()
time.sleep(8)
cm=input("how far do you want to go forward?")
drone.forward = cm
print("forward", cm)
time.sleep(5)
print("land")
drone.land()
time.sleep(5)
drone.disconnect()