├── .gitignore ├── GUIDED ├── FlightController.py ├── README.md ├── TakeoffAndLand.py ├── VehicleProperties.py └── Velocity&YawCtrl.py ├── GUIDED_NOGPS ├── AirTrafficControl.py └── control_test.py ├── LICENSE ├── README.md └── doc ├── land_clip.gif ├── rect_clip.gif └── takeoff_clip.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/.gitignore -------------------------------------------------------------------------------- /GUIDED/FlightController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/GUIDED/FlightController.py -------------------------------------------------------------------------------- /GUIDED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/GUIDED/README.md -------------------------------------------------------------------------------- /GUIDED/TakeoffAndLand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/GUIDED/TakeoffAndLand.py -------------------------------------------------------------------------------- /GUIDED/VehicleProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/GUIDED/VehicleProperties.py -------------------------------------------------------------------------------- /GUIDED/Velocity&YawCtrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/GUIDED/Velocity&YawCtrl.py -------------------------------------------------------------------------------- /GUIDED_NOGPS/AirTrafficControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/GUIDED_NOGPS/AirTrafficControl.py -------------------------------------------------------------------------------- /GUIDED_NOGPS/control_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/GUIDED_NOGPS/control_test.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/README.md -------------------------------------------------------------------------------- /doc/land_clip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/doc/land_clip.gif -------------------------------------------------------------------------------- /doc/rect_clip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/doc/rect_clip.gif -------------------------------------------------------------------------------- /doc/takeoff_clip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drones4STEM/DroneController/HEAD/doc/takeoff_clip.gif --------------------------------------------------------------------------------