├── .gitattributes ├── .gitignore ├── LICENSE ├── README(CH).md ├── README.md ├── Tello-Swarm(.exe).zip ├── example_script ├── test_for_1.txt ├── test_for_2.txt ├── test_for_3.txt └── test_for_7.txt ├── formation_setup.py ├── get-pip.py ├── install ├── Linux │ └── linux_install.sh ├── Macos │ └── mac_install.sh └── Windows │ └── windows_install.bat ├── ip.txt ├── multi_tello_test.py ├── stats.py └── tello_manager.py /.gitattributes: -------------------------------------------------------------------------------- 1 | $ cat ./.gitattributes 2 | *.bat -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/LICENSE -------------------------------------------------------------------------------- /README(CH).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/README(CH).md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/README.md -------------------------------------------------------------------------------- /Tello-Swarm(.exe).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/Tello-Swarm(.exe).zip -------------------------------------------------------------------------------- /example_script/test_for_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/example_script/test_for_1.txt -------------------------------------------------------------------------------- /example_script/test_for_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/example_script/test_for_2.txt -------------------------------------------------------------------------------- /example_script/test_for_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/example_script/test_for_3.txt -------------------------------------------------------------------------------- /example_script/test_for_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/example_script/test_for_7.txt -------------------------------------------------------------------------------- /formation_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/formation_setup.py -------------------------------------------------------------------------------- /get-pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/get-pip.py -------------------------------------------------------------------------------- /install/Linux/linux_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/install/Linux/linux_install.sh -------------------------------------------------------------------------------- /install/Macos/mac_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/install/Macos/mac_install.sh -------------------------------------------------------------------------------- /install/Windows/windows_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/install/Windows/windows_install.bat -------------------------------------------------------------------------------- /ip.txt: -------------------------------------------------------------------------------- 1 | scan 1 2 | correct_ip 3 | delay 20 -------------------------------------------------------------------------------- /multi_tello_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/multi_tello_test.py -------------------------------------------------------------------------------- /stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/stats.py -------------------------------------------------------------------------------- /tello_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelloSDK/Multi-Tello-Formation/HEAD/tello_manager.py --------------------------------------------------------------------------------