balena.io
An IoT system to automate plant maintenance built on Raspberry Pi with Balena.
- Introduction
- Hardware required
- Physical setup
- Video demo
- Wiring Diagram
- Understanding plant
- Code snippets
- FAQs
- Support
- Licence
We all love plants. But in this busy lifestyle, sometimes it's tricky to maintain and take care of them in daily basis, specially if you have a lot of them.
This project attempts to automate the process simply and sensibly. It uses balena to stay online so you can keep an eye on your beloved plants even when you are on a holiday.
- 1 x Raspberry Pi 3 b+
- 1 x LDR sensor
- 1 x 5v pump
- 3 x Moisture sensors
- Grow Lights as needed
- 2 x IRLZ44N Mosfets
- 1 x 5v (minimum 2A) power supply
- 1 x RPi power supply
- Water atomiser (not implemented yet)
Moisture | LDR |
---|---|
![]() |
![]() |
//Youtube link
//Add fritzing diagram
All plants have different needs and requirements and it's crucial to understand them before diving into the code.
For this project I am using a Rubber plant which needs to be watered once per week. This is crucial as roots of some plants get infested if they are watered too much. The soil needs to get a little dry before it's watered again.
It also likes moisture on its leaves. This can be achieved using a mist maker or an atomiser of some kind. This is not yet implemented into the system.
Finally, sunlight is essential for every plant. Where I am right now, most days come without it. But we can easily substitute it with full spectrum LED lights.
Plants don't need 24x7 care. They need someone to check in periodically and adjust little things. But interfacing with a real time clock and setting up activities over it can get quite frustrating.
Schedule comes to rescue. It handles all the backend and enables us to trigger functions at the right time consistently. For instance, we don't want the soil to be drenched in water all the time, so it's a good idea to only trigger watering once every week.
schedule.every().monday.at("11:00").do(water)
One of the limitations of Raspberry Pi is the absence of an ADC converter. Which means there's no straightforward way to read values from light and humidity sensors. But with a little bit of creativity, engineering and googling, nothing is unachievable.
Check out this instructable overcoming the problem using a single dirt cheap capacitor!!! If that's not clever, I don't know what is.
Moisture sensor is easier to handle. It has two outputs, analog and digital. Mysterious... It also comes with a tiny knob. Plot thickens...
Well the knob lets you set a limit to how 'moist' it should be when the digital pin goes high. Bravo whoever designed this sensor !!!
- If you don't know balena, start here.