aweijnitz / indoor_hydro

Indoor Hydroponic Garden Documentation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Indoor Hydro

Indoor Hydroponic Garden Documentation

This is a write-up of my small indoor hydrponic garden. I use it to grow chilis and bell peppers.

Live Online Dashboard

TL;DR

Hardware

Grow Light and Reflector

To survive the dark winter months, the plants need light. Lighting is a big topic and many have strong opinions on it.

Regardless of what your favourite is, CFL:s are the go-to alternative for cheap, reliable and efficient ligting. There might be better alternatives, but then you need to shell out a lot more money.

I bought an Electrox Grow, 125W and it performs very well for me. Ignorable heat and a lot of light.

In addition to the light, you will need a reflector. I bought my light in a kit which included a reflector. Something like this. Cost: About €50 for lamp and reflector.

The Pump

An aquarium pump is silent and provides enough lift to cirulate the water from the tank to the grow tray above it.

I use an Eheim compact 300. The main advatage, outside of being affordable and of high quality, is that the flow rate is easy to set.

Grow Tent (DIY)

Light will be your most scarce resource and the electricity needed most likely the most expensive factor in day-to-day operations. It is important not to waste it. This means you need to encase the garden in a small reflective tent to make sure as much light as possible is going to the plants.

For my grow tent, I bought reflective mylar sheeting and used it as walls on an metallic Ikea shelf. See photos below.

Monitoring and Control

Basically you just need two timers; One interval timer for the pump intervals (1min run, every 15min for example) and an additional timer to switch on the light in the morning and then switch it off again in the evening. 18 hours on, is said to be ideal. I currently keep the light running for 14h per day.

Since I don't have an interval timer, but I own several Rasberry Pi:s, I just hooked up an electrical socket to the a RasPi and added cron job entries to switch the pump and light on and off.

Raspberry Pi

Current crontab entries, controlling lighting and pump intervals.

# m h  dom mon dow   command
*/15 6-20 * * * /home/hydro/bin/togglePump.sh
30 20-23 * * * /home/hydro/bin/togglePump.sh
0 7 * * * /home/hydro/bin/lightOn.sh
0 20 * * * /home/hydro/bin/lightOff.sh

Programmable USB multiple socket

EnerGenie manufactures great, Pi-friendly, multiple sockets that are controllable over USB, using built-in relays. I went with the EnerGenie EG-PMS2 and it worked right out of the box. Install the packages/drivers on the Pi and then you can switch the sockets on and off using shell commands. Very straight forward and no programming required!

Getting the Linux command line socket controller

sudo apt-get install sispmctl

Medium And Nutrients

  • Medium: Rockwool in net pots, with expanded clay pellets in between as filler.
  • Nutrients: Cellmax Hydro Grow Two component solution mixed X+Y equal parts, 4ml/l.

Photos

Plants in net pots, standing in expanded clay

grow tray

Grow Tent

Grow Tent

Grow Tent

Grow Tent

About

Indoor Hydroponic Garden Documentation

License:MIT License


Languages

Language:Shell 100.0%