/brewberry-pi-python

Raspberry Pi based home brewery automation

Primary LanguagePython

Brewberry-π Build Status Codacy Badge BCH compliance

Raspberry Pi based homebrew automation.

Given a DS18B20 temperature sensor, a solid state relays and a wifi connector, automate the mash process. At least, that's the plan.

Resources:

Starting the application

To start the application, from this directory execute:

python -m brewberry [--fake]

The --fake option can be given to start the fake (non raspberry) io driver.

The web server will be listening on port 9080.

To start the application at boot time, add the following lines to /etc/rc.local:

echo "Starting Brewberry-PI"
(cd /home/pi/brewberry-pi && /usr/bin/python -m brewberry; ) &