├── .gitignore ├── README.md ├── assets └── tello-python-banner.jpg ├── examples ├── commands.txt └── simple_test.py ├── install-gstreamer.sh ├── setup.py └── tello ├── __init__.py ├── tello.py └── test_camera.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/README.md -------------------------------------------------------------------------------- /assets/tello-python-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/assets/tello-python-banner.jpg -------------------------------------------------------------------------------- /examples/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/examples/commands.txt -------------------------------------------------------------------------------- /examples/simple_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/examples/simple_test.py -------------------------------------------------------------------------------- /install-gstreamer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/install-gstreamer.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/setup.py -------------------------------------------------------------------------------- /tello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/tello/__init__.py -------------------------------------------------------------------------------- /tello/tello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/tello/tello.py -------------------------------------------------------------------------------- /tello/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harleylara/tello-python/HEAD/tello/test_camera.py --------------------------------------------------------------------------------