Connecting a Relay Board to a Raspberry Pi

by | May 31, 2022 | 8 comments

Raspberry Pi with a Relay Board

 

Relays are an electromagnetic switch that allows you to control a high voltage electrical circuit by opening and closing contacts in another low voltage circuit, on the Raspberry Pi  the control circuit will be operated by our GPIO pins. A relay generally has 3 connection points on the controlled circuit side, Normally Open (NO), Normally Closed (NC) and a Common, an important convention to note is that when a relay contact is normally open (NO) the relay is not energized.

To configure the relay board with a Raspberry Pi I am assuming that you are running the latest version of Raspian and have the ability to connect to your Pi either through SSH with putty and FTP with filezilla, or directly with a keyboard and monitor, if you haven’t set-up your RPi yet then check out my getting started section.

I will not be connecting AC powered equipment to the output of the relay yet but we will be able to see that we have control by the led indicator lights on the circuit board itself. You could also use a buzzer or multimeter to prove that the relays are switching.

When describing the physical pin connections I will be following the GPIO pin numbering convention show below.

 

gpio-numbers-pi2

 

Warning: Working with AC current is Dangerous, Please exercise extreme caution and preferably consult a professional to make any high voltage connections. Always disconnect from the mains when not in use and mount in a secure sealed plastic container.

 

The relay board that I am using is “active low” which means that the relays are switched on when the inputs have 0V connected to them. Since the GPIO pins on the Pi output 3.3V when active we need a way to effectively short the input pins on the relay board to ground when we activate the GPIO pin, the Transistor (2N3904)/Resistor (2.2kΩ, 10kΩ) circuit shown below will achieve this. One of these circuits will be required for each GPIO pin to relay input that you are connecting.

 

Active Low input transistor circuit

 

To connect the relay module to your RPi you will need to make the following connections, I’ll be using GPIO pins 22-25 but you can use any spare pins.

  • Connect the 5V RPi pin to the Vcc pin of the relay board
  • Connect the Ground Pin of the RPi to the Ground pin of the relay board
  • Connect GPIO pin 22 to the input of the transistor circuit above and the output to IN1 pin of the relay board
  • Repeat the process above for the remaining relays (each relay requires a separate transistor circuit)
  • If not connected already then place the jumper between the JD-Vcc and the Vcc pin. (remove if you are using an external 5V power supply for the relay board)





It should be noted that each relay draws approx 72mA from the Pi when activated, given that the Pi itself required 500mA it is important to make sure that your power supply for the Pi can provide this current, a minimum of a 1.5 amp supply should be used to allow for a margin of safety. If you are connecting more than 4 relays then it is probably necessary to power your relay board with a separate 5V supply.

 

Note: Connecting the jumper between the JD-Vcc and Vcc pins removes the optical isolation provided by the circuit board but allows you to power the relay coils from the RPi.  If you want full isolation then remove the jumper from JD-Vcc to Vcc and the Ground pin connection to the RPi. Connect a separate 5V power supply to the JD-Vcc pin and the Ground pin of the relay board.

 

Raspberry Pi with Relay Circuit Diagram

Now that we have a circuit connected we can go ahead and add some code for our Raspberry Pi relay control and test the connections.

 

#!/usr/bin/env python
import RPi.GPIO as GPIO  # Import GPIO Module
from time import sleep  # Import sleep Module for timing
GPIO.setmode(GPIO.BCM)  # Configures how we are describing our pin numbering
GPIO.setwarnings(False)  # Disable Warnings
OutputPins = [22, 23, 24, 25]  # Set the GPIO pins that are required
#Set our GPIO pins to outputs and set them to off
for i in OutputPins:
    GPIO.setup(i, GPIO.OUT)
    GPIO.output(i, False)
while (True):
# Step through each GPIO pin and set On
    for i in OutputPins:
        GPIO.output(i, True)
# Sleep for 5 seconds
    sleep(5)
# Step through each GPIO pin and set Off
    for i in OutputPins:
        GPIO.output(i, False)
    sleep(5)

 

We now transfer our code to our chosen folder on the Pi using an FTP client and then run the program.  While there is no visible output from the program the led’s and relays should switch on and off every 5 seconds.

To ensure that it is working correctly activate one of the relays so that the led is lit, then using a multimeter check which outputs you have a closed circuit on, shutdown your Pi and the circuit should open. This will ensure that the transistor circuit is working correctly and in the event that your Pi loses power, whatever you are powering from the relay will also turn off.

All the python code is available for both 2.x and 3.x on my Hydropi GitHub Repository.

 

All going well you have now configured your RPi to interface with a 4-Channel Relay Board.

 

If you have any thought’s about this article, improvements or errors let me know in the comments below and if you found this helpful, why not share it with others.

 

 

Pin It on Pinterest

Share This