Raspberry Pi Irrigation Controller

Photo of author
Written By Hassan Zaka

I'm an experienced expert in accounting and technical writing, skilled at simplifying complex topics with engaging visuals. Ideal for any organization in need of top-tier technical writing services.

Gardening improves health and quality of life, connecting us to our local environment. Plus, you can eat organic fruits and veggies at very little cost. Yet for all these fantastic benefits, remembering to water can still take a backseat to our busy lives. Fortunately, home automation is easier than ever with inexpensive and accessible microcontrollers like theRaspberry Pi and Arduino.Raspberry Pi Irrigation Controller

This tutorial details the construction process for a remotely controlled solenoid irrigation valve. In other words, a home computer controls the water flow of an outdoor hose spigot, or bib. The materials cost is about $30-40, excluding the Raspberry Pi (RPi). Cheaper parts can be found with patience and creativity.

The design is intended as a simple introduction to building a complete, personalized home irrigation system. It is also intended to encourage simple DIY solutions to everyday problems. Make modifications and upgrades to suit your needs, resources, and skill level. To conserve water, include drip irrigation and a soil moisture sensor.

Note: This project involves high voltage which requires extreme caution. Always check power connections before touching exposed wires.

Step 1: Materials

 Materials Raspberry Pi Irrigation Controller

— Raspberry Pi 2 Model BGPIO CableGPIO cable adapter + breadboard

This tutorial assumes the RPi has all GPIO libraries. To install outdoors, the RPi also needs a WiFi adapter and to be accessible by SSH or other remote login.

— 24 VAC Solenoid Valve 1″

This tutorial uses a 24 VAC solenoid for a 3/4″ hose spigot.

Some background: there are two main types of solenoids: AC or DC.

An AC solenoid valve turns water on when voltage is applied, and turns it off when the power is off. The drawback is that it uses AC voltage, requiring an adapter to convert the wall voltage, 120 VAC, into the 24 VAC voltage needed to trigger the valve. Outdoor Installation likely requires an extension cord.

A DC solenoid valve allows for a battery powered system. It can easily be modified to be wireless and powered by renewable energy using a medium solar panel (~10 W). However, most DC irrigation valves are latching solenoids and require switching the valve lead polarity to turn water on and off.

I chose an AC valve for the first prototype because I already had a few parts.. and adequate rechargeable batteries can be expensive.

— Solid State Relay

The Solid State Relay, or relay, is the intermediary switch between the RPi and the solenoid valve. This tutorial uses a Crouzet Model OAC5-315; its input is 3 – 8 VDC and its output is between 24 – 120 VAC at 1A.

— 2N3904 NPN Transistor

— 4.7 kOhm Resistor

— PCB Board

Sized to fit the relay, GPIO pins, transistor and resistor.

— 120 VAC to 24 VAC power adapter

Use an extension cord and/or longer leads to install outdoors.

— 22-gauge stranded wire (insulated), min. 10 feet

— Waterproof container

I used a leftover Waterproof Project Case wrapped with waterproof tape. Cheap/free containers are easy to find; Talenti ice cream containers are an example, and also happen to contain delicious ice cream. With small containers, be sure exposed AC connections are completely covered in epoxy to protect the RPi.

— Optional: Waterproof connectors, waterproofing tape/lots of duct tape

Step 2: Tools

 Tools Raspberry Pi Irrigation Controller

— Soldering Iron, solderSolder Sucker

— Wire Strippers

— Epoxy

Check that it is safe for outdoor use. Marine-grade epoxy may be best for long-term outdoor installation.

— Screwdriver

— Optional (but highly recommended): Multimeter

— Depending on your system container, a drillmight also be useful.

Step 3: Solenoid Setup

 Solenoid Setup Raspberry Pi Irrigation Controller

1. Add wire leads to the AC power adapter (if there are none); use at least 3-4 ft of wire.

This AC power adapter has screw-type connectors. Recommended to coat these in epoxy.

2. Verify that the solenoid works by connecting the leads to the power adapter.

The valve makes a “clicking” sound when it is turned on.

For thorough testing, repeat with the valve connected to the hose spigot.

3. Optional:Extend solenoid valve leads using the waterproof connectors.

Twist wires together inside the connectors, check the connection (aka continuity), then epoxy the openings.

Remember, never touch exposed wires when the power is on. Go slow when working with AC to double- and triple-check power.

Step 4: Build It! Hardware Pt. 1

 Hardware Raspberry Pi Irrigation Controller

If the schematic makes sense, skip the next three steps (Hardware Pts 1 – 3).

Foreword: Pay attention to the layout of the PCB pads and use them to make connections simpler and more direct. Plan where components are connected prior to soldering. It may be easier to solder components in a different order.

1.a. Solder the relay to the PCB board.
The labels on the relay tell you the function of each pin.

1.b. Solder a wire lead to each relay pin, leaving 6 in. or more for the AC leads.

2. Solder the RPi GPIO pin 183.3 VDC pin, and ground pin to PCB board pads.

3. Solder the transistor to the PCB board, keeping each of the legs electrically insulated.

4. Solder one end of the resistor to the middle transistor leg (base pin) and the other end to GPIO pin 18.

For best results, use one 4.7 kOhm resistor and connect as shown in the last photo.

Step 5: Build It! Hardware Pt. 2

 Hardware 2 Raspberry Pi Irrigation Controller

1. Connect theRPi ground pin to transistor pin 1, or emitter pin.

Connect from the flat side of the transistor with a wire, the PCB pads, or a combination. For stranded wire, it helps to twist the ends before pushing them through the PCB holes.

2. Connect transistor pin 3, or collector pin, to the negative DC relay pin.

3. Connect the RPi 3.3 VDC pin to the positive DC relay pin.

Step 6: Build It! Hardware Pt. 3

 Hardware 3 Raspberry Pi Irrigation Controller

1. Connect one valve lead to one AC power source lead.

Twist wires together and coat in solder. AC current alternates directions, so either lead will work for both the valve and AC power source.

2. Connect the remaining valve lead to one of the relay AC output pins.

3. Connect the remaining AC power source lead to the other relay AC output pin.

4. Check all electrical connections with a multimeter.

If available, check continuity. Otherwise, plug in the AC power source and check that there is ~ 24 VAC across the relay AC pins.

A friendly reminder: Never touch exposed AC connections when the power source is plugged in. ALWAYS double check that the AC power source is disconnected.

5. Coat all exposed AC connections in epoxy, including the relay AC pins.

Step 7: Software

 Software Raspberry Pi Irrigation Controller

The software program turns the valve on and off by applying a voltage across the DC terminals of the relay.

1. With that basic principle in mind, here’s a simple program to get you started:

#Import the necessary libraries
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
#Setup pin 18 as an output
GPIO.setmode(GPIO.BCM)
GPIO.setup(18, GPIO.OUT)
#This function turns the valve on and off in 10 sec. intervals. 
def valve_OnOff(Pin):
    while True:
        GPIO.output(18, GPIO.HIGH)
        print("GPIO HIGH (on), valve should be off") 
        time.sleep(10) #waiting time in seconds
        GPIO.output(18, GPIO.LOW)
        print("GPIO LOW (off), valve should be on")
        time.sleep(10)
valve_OnOff(18)
GPIO.cleanup()

2. Run the code in the terminal window of the RPi using the following:

sudo python FileName.py

3. Run the program before connecting the AC power source.

Use a multimeter to check that the voltage across the DC relay pins fluctuates from ~ 0VDC to ~ 3.3 VDC in ten second intervals.

4. Plug in the AC power source and run the program again. Listen for the solenoid to click on and off.

Step 8: Waterproofing

 Waterproofing Raspberry Pi Irrigation Controller
Waterproofing 1 Raspberry Pi Irrigation Controller

1. Double and triple-check all your connections with a multimeter.

2. Coat remaining exposed connections in epoxy

Give yourself a way to remove the RPi + GPIO cable from the rest of the circuit so the RPi can be used for future projects (if so desired).

3. Place the RPi and PCB board components in a waterproof container.

Find a way to seal the external power cables. The first prototype uses waterproof tape to cushion wires and seal the box. Drilling holes in the box and sealing with epoxy is another quick and easy option.. get creative!

4. Optional: To organize loose wires, twist insulated wires around each other, use zip ties or innovate another method.

Step 9: Customize & Install!

 Customize & Install Raspberry Pi Irrigation ControllerCustomize and Install Raspberry Pi Irrigation Controller

That’s it! Rewrite the program to water your garden as needed. The easiest way is to keep the program as a timer. Change the program to increase the watering time to suit your plant needs and the wait time to >12 hours (>43,200 s).

This system was originally designed to be controlled by a RPi-powered soil moisture sensor. To combine the two projects, copy the valve function into the soil moisture sensor program. Update the valve function to turn on if the soil moisture reading is below a certain threshold. Connect components to the existing PCB board if there is sufficient space, otherwise get another PCB board for the soil moisture sensing circuit.

Now that you understand the fundamentals, customize and upgrade the system to suit your own needs! Possible extensions include monitoring and/or controlling the system with your phone, or using renewable energy technology for power (e.g. photovoltaics + battery).

Source: Raspberry Pi Irrigation Controller

5/5 (1 Review)

Leave a Comment