├── .gitattributes ├── .gitignore ├── GamePad ├── GamePad_old.js ├── css │ └── styles.css ├── index.html ├── index.js ├── js │ └── scripts.js ├── package-lock.json └── package.json ├── README.md ├── banner ├── _1 └── _2 ├── index.js ├── keys.json ├── nodejs_udp_test ├── udp_arr_client_and_status.js └── udp_status_message.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── js │ ├── babylon.custom_3.js │ ├── babylon.custom_4.js │ ├── custom_data.js │ ├── custom_scene.js │ ├── gamepad.js │ └── moment.js └── models │ ├── TELLO.blend │ ├── TELLO_LOW.blend │ ├── TELLO_LOW.glb │ ├── TELLO_LOW.obj │ ├── TELLO_LOW.obj.manifest │ ├── TELLO_LOW.stl │ ├── TELLO_LOW.stl.manifest │ └── TELLO_LOW_old.glb ├── screenshots ├── 2019_01_09.png └── 2019_01_17.png └── tello_sdk_doc ├── Tello_SDK_2.0.pdf └── tello_SDK_1.3.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/.gitignore -------------------------------------------------------------------------------- /GamePad/GamePad_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/GamePad/GamePad_old.js -------------------------------------------------------------------------------- /GamePad/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/GamePad/css/styles.css -------------------------------------------------------------------------------- /GamePad/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/GamePad/index.html -------------------------------------------------------------------------------- /GamePad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/GamePad/index.js -------------------------------------------------------------------------------- /GamePad/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/GamePad/js/scripts.js -------------------------------------------------------------------------------- /GamePad/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/GamePad/package-lock.json -------------------------------------------------------------------------------- /GamePad/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/GamePad/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/README.md -------------------------------------------------------------------------------- /banner/_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/banner/_1 -------------------------------------------------------------------------------- /banner/_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/banner/_2 -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/index.js -------------------------------------------------------------------------------- /keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/keys.json -------------------------------------------------------------------------------- /nodejs_udp_test/udp_arr_client_and_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/nodejs_udp_test/udp_arr_client_and_status.js -------------------------------------------------------------------------------- /nodejs_udp_test/udp_status_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/nodejs_udp_test/udp_status_message.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/babylon.custom_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/js/babylon.custom_3.js -------------------------------------------------------------------------------- /public/js/babylon.custom_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/js/babylon.custom_4.js -------------------------------------------------------------------------------- /public/js/custom_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/js/custom_data.js -------------------------------------------------------------------------------- /public/js/custom_scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/js/custom_scene.js -------------------------------------------------------------------------------- /public/js/gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/js/gamepad.js -------------------------------------------------------------------------------- /public/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/js/moment.js -------------------------------------------------------------------------------- /public/models/TELLO.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/models/TELLO.blend -------------------------------------------------------------------------------- /public/models/TELLO_LOW.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/models/TELLO_LOW.blend -------------------------------------------------------------------------------- /public/models/TELLO_LOW.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/models/TELLO_LOW.glb -------------------------------------------------------------------------------- /public/models/TELLO_LOW.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/models/TELLO_LOW.obj -------------------------------------------------------------------------------- /public/models/TELLO_LOW.obj.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/models/TELLO_LOW.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/models/TELLO_LOW.stl -------------------------------------------------------------------------------- /public/models/TELLO_LOW.stl.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/models/TELLO_LOW_old.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/public/models/TELLO_LOW_old.glb -------------------------------------------------------------------------------- /screenshots/2019_01_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/screenshots/2019_01_09.png -------------------------------------------------------------------------------- /screenshots/2019_01_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/screenshots/2019_01_17.png -------------------------------------------------------------------------------- /tello_sdk_doc/Tello_SDK_2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/tello_sdk_doc/Tello_SDK_2.0.pdf -------------------------------------------------------------------------------- /tello_sdk_doc/tello_SDK_1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwinap/Tello_3D_Mission_Control_NodeJS-JS/HEAD/tello_sdk_doc/tello_SDK_1.3.pdf --------------------------------------------------------------------------------