/pi_proofing

Control code for Raspberry PI powered bread proofing box

Primary LanguagePython

pi setup

sudo apt-get install rsync python-pip python-dev
sudo pip install virtualenv

App Setup

virtualenv env
. env/bin/activate
pip install -r requirements.txt

Development

python -m unittest discover -v -s proofing -p '*_test.py'
rsync -avzh --delete --exclude=env --exclude=.git --exclude=.idea . pi@192.168.2.19:~/app

Todo

  • Figure out how to test heater_switch.py (can't compile RPi.GPIO on dev machine)

Reference