Overly compilcated control of an inverted pendulum.
First, complete steps 1 and 2 of contributing.
Prerequisites
I'm assuming you're developing in linux. In which case you should only need to make sure that cmake
is installed.
cd invpend
mkdir build
cd build
cmake ..
make
Do this often: Sync your fork
- Fork it. (The top left of the webpage)
- Clone your fork locally. (Big Green button in the top left)
- Configure a remote fork
- Create your feature branch (
git checkout master && git checkout -b feature/fooBar
) - Commit your changes (
git commit -am "Added fooBar"
) - Push to your fork (
git push origin feature/fooBar
) - Create a pull request from your fork
- Repeat steps 3, 4, 5 and 6.