예제 #1
0
from djitellopy import Tello

tello = Tello()
if not tello.connect():
	print("Cannot reach tello, aborting!")
	exit(1)

tello.connect_to_wifi("Bunker", "E3JDWhLYJqY8fP7e")
예제 #2
0
"""
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>")