from djitellopy import Tello tello = Tello() if not tello.connect(): print("Cannot reach tello, aborting!") exit(1) tello.connect_to_wifi("Bunker", "E3JDWhLYJqY8fP7e")
""" This code is aim at connecting tello to others wifi """ from djitellopy import Tello # Connect to tello tello = Tello() tello.connect() # Connect to other wifi tello.connect_to_wifi("<ssid>", "<password>")