Control four (or more) RC servos with Arduino and Python.
Please read the associated blog post for more details and a full description of the code.
OKAY we're going to use pipenv
python3 -m pip install --user --upgrade pip
python3 -m pip --version
python3 -m pip install --user pipenv
Clone this repo onto your local machine as follows:
git clone https://github.com/bws428/arduino-python-servos.git servos
Change into the project directory:
cd servos
Install the project's dependencies:
pipenv install
Activate the virtual environment:
pipenv shell
With the virtual environment activated, your shell prompt should now look something like this:
(servos) username@host:~/path/to/servos $
TODO...