├── .DS_Store ├── .gitignore ├── .idea ├── dictionaries │ └── viveksni.xml └── workspace.xml ├── README.md ├── _config.yml ├── files └── RPi_zero_mount_with_camera.scad ├── flytello.py ├── gamepad.py ├── images ├── .DS_Store ├── Tello.jpg ├── assembled_zero_mount.jpeg ├── assembled_zero_mount_2.jpeg ├── controller.png ├── drone_front.jpeg ├── microusbshell.jpeg └── powerbankmodule.jpeg └── raspberrypi-controlled-tello.iml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/dictionaries/viveksni.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/.idea/dictionaries/viveksni.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/_config.yml -------------------------------------------------------------------------------- /files/RPi_zero_mount_with_camera.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/files/RPi_zero_mount_with_camera.scad -------------------------------------------------------------------------------- /flytello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/flytello.py -------------------------------------------------------------------------------- /gamepad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/gamepad.py -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/Tello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/Tello.jpg -------------------------------------------------------------------------------- /images/assembled_zero_mount.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/assembled_zero_mount.jpeg -------------------------------------------------------------------------------- /images/assembled_zero_mount_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/assembled_zero_mount_2.jpeg -------------------------------------------------------------------------------- /images/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/controller.png -------------------------------------------------------------------------------- /images/drone_front.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/drone_front.jpeg -------------------------------------------------------------------------------- /images/microusbshell.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/microusbshell.jpeg -------------------------------------------------------------------------------- /images/powerbankmodule.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/images/powerbankmodule.jpeg -------------------------------------------------------------------------------- /raspberrypi-controlled-tello.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erviveksoni/raspberrypi-controlled-tello/HEAD/raspberrypi-controlled-tello.iml --------------------------------------------------------------------------------