├── .gitignore ├── .gitmodules ├── CHANGELOG.rst ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cfg ├── 960x720.yaml └── Tello.cfg ├── launch ├── devel.launch ├── joy_teleop.launch ├── logger.launch └── tello_node.launch ├── misc └── ds3_usb.yaml ├── msg └── TelloStatus.msg ├── nodes ├── gamepad_teleop_node └── tello_driver_node ├── package.xml ├── setup.py └── src ├── test_dyncfg.py ├── test_h264_sub.cpp └── test_h264_sub.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/README.md -------------------------------------------------------------------------------- /cfg/960x720.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/cfg/960x720.yaml -------------------------------------------------------------------------------- /cfg/Tello.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/cfg/Tello.cfg -------------------------------------------------------------------------------- /launch/devel.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/launch/devel.launch -------------------------------------------------------------------------------- /launch/joy_teleop.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/launch/joy_teleop.launch -------------------------------------------------------------------------------- /launch/logger.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/launch/logger.launch -------------------------------------------------------------------------------- /launch/tello_node.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/launch/tello_node.launch -------------------------------------------------------------------------------- /misc/ds3_usb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/misc/ds3_usb.yaml -------------------------------------------------------------------------------- /msg/TelloStatus.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/msg/TelloStatus.msg -------------------------------------------------------------------------------- /nodes/gamepad_teleop_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/nodes/gamepad_teleop_node -------------------------------------------------------------------------------- /nodes/tello_driver_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/nodes/tello_driver_node -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/package.xml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/setup.py -------------------------------------------------------------------------------- /src/test_dyncfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/src/test_dyncfg.py -------------------------------------------------------------------------------- /src/test_h264_sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/src/test_h264_sub.cpp -------------------------------------------------------------------------------- /src/test_h264_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordy-van-appeven/tello_driver/HEAD/src/test_h264_sub.py --------------------------------------------------------------------------------