- Runs on Raspberry Pi (compatible Pis)
- Easy to setup (one liner)
- Simple: one sensor, one relay
- PD controller that works with a simple and cheap non-PWM/SSR relay and yet eliminates temperature overshoots
- Supports HTTP and MQTT to control kettle and agitator (e.g. smart plugs)
- Modes for mashing and fermentation
- Multi-language (German, English, pull-requests welcome)
- Integrated recipes: Set the temperature, the time, etc.
- Integrated logging: See your temperature log during the mash and export a PDF after brewing
- Sends notifications to Telegram
- User authentication
- Works perfectly on any web browser
- Free, open-source license (MIT)
To run a manual update:
- Connect to your BierBot using SSH (type
ssh [email protected]
in your favorite Terminal, with the IP being the IP of your BierBot). - Change into the BierBot folder
cd cd /home/pi/BierBot
- Discard any local changes to your BierBot files
git reset --hard
- Pull the newest version from GitHub
git pull
(depending on your install, you might get permission errors, runsudo git pull
)
- v.2.1.0 (23.01.2021)
- Added telegram Bot support, thanks to @jonathanschneider for the PR
- Bugfix BeerXML import now working (again), tested with recipes from www.brewersfriend
- Download RASPBIAN BUSTER LITE from the official website. Recommended version is from February 2020 (Release Date 2020-02-13), with kernel version 4.19.
- Flash it to the SD card as described on the setup page
- Connect at least an (micro) HDMI cable (monitor), USB keyboard and microUSB (USB-C) for power to your Raspberry Pi (4). Wait for it to boot twice.
- Login using user
pi
and passwordraspberry
- Run (=type)
sudo raspi-config
,- select
5 Interfacing Options
>P2 SSH
and confirm with<yes>
- Optional: If you want to connect to your WiFi: now is your time:
select
2 Network options
>N2 Wifi
. This is also possible via the BierBot Software later. - Also optional but recommended:
1 Change user password
.
- select
- You may now unplug your HDMI and keyboard and operate the Raspberry Pi soley over Ethernet / WiFi.
- Connect to your router to figure out the IP of your Raspberry Pi.
Now, we are ready to update the Raspberry Pi and install all requirements, such as NodeJS and the database which is the promised one-liner.
cd ~ && wget https://raw.githubusercontent.com/BernhardSchlegel/BierBot/master/bierbot-setup.sh && chmod +x bierbot-setup.sh && sudo ./bierbot-setup.sh
Congrats, you're done. Your BierBot is now accessible at http://BierBotBen (you can change the name of your BierBot on the configuration page)
If you want to know what the script does in the background, check out the (potentially outdated) explanation here.
The BierBot install script and Software has been tested on the following Raspberry Pis (source):
Raspberry Pi | 1 | 2 | 3 | 4 | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Type | A | A+ | B | B+ | B | B v1.2 | A+ | B v.1.2 | B+ | B |
ARM | ARMv6 (32 Bit) | ARMv7 (32Bit) | ARMv8 (64 Bit) | |||||||
Power to beep | 1m 31s | 1m 36s | 1m 33s | |||||||
setupscript | ✔️ | ✔️ | ✔️ | |||||||
software | ✔️ | ✔️ | ✔️ |
TL;DR: Get the cheapest one, in terms of startup speed: No difference.
If you happen to own one of the models with a blank cell, shoot me a message!
The default BierBot wiring is as follows (I'll use the RPi# (pigpio#)
syntax):
- The DS18B20 sensor is connected to 3,3V, GND, and Pin Number RPi 7 (pi-gpio 7). With the latter being the data-channel of your sensor.
- The control channel of your Relais is connected to 11 (17). This will be used to turn on/off your heating / cooling device.
- Your motor (for stirring your mash) is connected to Pin 12 (18). This is a PWM Pin - which will be used. You can set your Motor Voltage on the BierBot settings page.
- Pin 13 (27) is optional: If you want your temperature sensor to be hot pluggable connect this pin. It will trigger an ISR on either edge (falling / rising) and is pulled via an internal resistor to ground.
- Pin 15 (22) is also optional: If you connect a piezzo buzzer the BierBot tells you with a beeping symphony when the next step is reached or the brew is finished.
- migrate client package management from
bower
toyarn
.
If you want to contribute, your Pull-Request or translation is very welcome! Please see the notes for developers to get you started!
- My Code: MIT
- Orange Mash BierBot Logo: (c) by Bernhard Schlegel, all rights reserved.
Copyright (c) 2014-present, Bernhard Schlegel