These are collection of python scripts used for quadrotor lab in course EE 476, Iowa State University.
Prepared by Fan Zhang
Make sure python, conda and git are installed on your system.
$ git clone https://github.com/fzhang327/EE476.git
$ cd EE476
$ conda create -p ./venv/ python=3.8
$ pip install requirements.txt
Make sure you have rights to commit and push to the repository. Create a new branch, commit your work with descriptive commit message and push
$ git checkout -b <my-branch-name>
$ git commit -m "some new feature I worked on"
$ git push origin <my-branch-name>
And create a pull request here