├── .gitignore ├── LICENSE.txt ├── README.md ├── files ├── joystick_and_video.png ├── release-how-to.txt ├── tello-and-gamepad.png └── video_effect.jpg ├── setup.cfg ├── setup.py ├── tellopy ├── __init__.py ├── _internal │ ├── __init__.py │ ├── crc.py │ ├── dispatcher.py │ ├── error.py │ ├── event.py │ ├── logger.py │ ├── protocol.py │ ├── state.py │ ├── tello.py │ ├── utils.py │ └── video_stream.py └── examples │ ├── __init__.py │ ├── joystick_and_video.py │ ├── keyboard_and_video.py │ ├── record_log.py │ ├── simple_takeoff.py │ └── video_effect.py ├── test_xbox.py └── tests ├── __init__.py ├── keep_connection.bash ├── keyboard_and_video.bash ├── tello_qt ├── mainwindow.ui ├── setup.py ├── tello_qt.py ├── thread_qt.py ├── wifi.icns └── wifi.py ├── test.bash ├── test.py └── wait_wifi_connection.bash /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build/ 3 | dist/ 4 | tellopy.egg-info/ 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/README.md -------------------------------------------------------------------------------- /files/joystick_and_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/files/joystick_and_video.png -------------------------------------------------------------------------------- /files/release-how-to.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/files/release-how-to.txt -------------------------------------------------------------------------------- /files/tello-and-gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/files/tello-and-gamepad.png -------------------------------------------------------------------------------- /files/video_effect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/files/video_effect.jpg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_file = LICENSE.txt 3 | 4 | [bdist_wheel] 5 | universal=1 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/setup.py -------------------------------------------------------------------------------- /tellopy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/__init__.py -------------------------------------------------------------------------------- /tellopy/_internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tellopy/_internal/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/crc.py -------------------------------------------------------------------------------- /tellopy/_internal/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/dispatcher.py -------------------------------------------------------------------------------- /tellopy/_internal/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/error.py -------------------------------------------------------------------------------- /tellopy/_internal/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/event.py -------------------------------------------------------------------------------- /tellopy/_internal/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/logger.py -------------------------------------------------------------------------------- /tellopy/_internal/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/protocol.py -------------------------------------------------------------------------------- /tellopy/_internal/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/state.py -------------------------------------------------------------------------------- /tellopy/_internal/tello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/tello.py -------------------------------------------------------------------------------- /tellopy/_internal/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/utils.py -------------------------------------------------------------------------------- /tellopy/_internal/video_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/_internal/video_stream.py -------------------------------------------------------------------------------- /tellopy/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tellopy/examples/joystick_and_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/examples/joystick_and_video.py -------------------------------------------------------------------------------- /tellopy/examples/keyboard_and_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/examples/keyboard_and_video.py -------------------------------------------------------------------------------- /tellopy/examples/record_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/examples/record_log.py -------------------------------------------------------------------------------- /tellopy/examples/simple_takeoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/examples/simple_takeoff.py -------------------------------------------------------------------------------- /tellopy/examples/video_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tellopy/examples/video_effect.py -------------------------------------------------------------------------------- /test_xbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/test_xbox.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/keep_connection.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/keep_connection.bash -------------------------------------------------------------------------------- /tests/keyboard_and_video.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/keyboard_and_video.bash -------------------------------------------------------------------------------- /tests/tello_qt/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/tello_qt/mainwindow.ui -------------------------------------------------------------------------------- /tests/tello_qt/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/tello_qt/setup.py -------------------------------------------------------------------------------- /tests/tello_qt/tello_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/tello_qt/tello_qt.py -------------------------------------------------------------------------------- /tests/tello_qt/thread_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/tello_qt/thread_qt.py -------------------------------------------------------------------------------- /tests/tello_qt/wifi.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/tello_qt/wifi.icns -------------------------------------------------------------------------------- /tests/tello_qt/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/tello_qt/wifi.py -------------------------------------------------------------------------------- /tests/test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/test.bash -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/wait_wifi_connection.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanyazou/TelloPy/HEAD/tests/wait_wifi_connection.bash --------------------------------------------------------------------------------