Update wiring pi build name update
reference/
build/
+.venv/
# build the package
./build debian || exit 1
-mv debian-template/wiringpi-*.deb .
+mv debian-template/wiringpi_*.deb .
# install it
-sudo apt install ./wiringpi-*.deb
+sudo apt install ./wiringpi_*.deb
popd || exit 67
popd || exit 68
--- /dev/null
+#!/bin/bash
+
+VENV_PATH=.venv
+
+if [ ! -f "$VENV_PATH/pyvenv.cfg" ]; then
+ python -m venv .venv
+else
+ echo "Using existing venv"
+fi
+
+"$VENV_PATH/bin/pip" install \
+ Pillow \
+ spidev \
+ RPi.GPIO \
+ ;
+
+