- Joined
- Apr 17, 2021
- Messages
- 30
- Reaction score
- 16
Hi all - I've just made the first release of my new library tello-asyncio, using modern asynchronous Python to control the drone.
It's very basic at the moment with just simple control of the drone - take off, fly around and land like this
...but things like drone status and video will be coming soon
It's very basic at the moment with just simple control of the drone - take off, fly around and land like this
Python:
import asyncio
from tello_asyncio import Tello
async def main():
drone = Tello()
try:
await drone.connect()
await drone.takeoff()
await drone.turn_clockwise(360)
await drone.land()
finally:
await drone.disconnect()
asyncio.run(main())
...but things like drone status and video will be coming soon
