This project allows you to control the watering of your mini-garden using small pumps.
- A Raspberry Pi
- One or many relay modules (VCC 5V)
- One or many micro submersible mini water pumps
- External battery 5V
git clone git@github.com:amouchere/growlab-watering.git
Install Python modules with apt
:
sudo apt update -qy && \
sudo apt install -qy git\
python3 \
python3-tz \
python3-requests
Install the python script as a service
sudo cp ~/growlab-watering/watering.service /etc/systemd/system/watering.service
sudo systemctl enable watering.service
sudo systemctl start watering.service