How To Control A Solenoid With A Raspberry Pi Using a Relay

Just finished up a tutorial "How To Control A Solenoid With A Raspberry Pi Using a Relay"

This is a guide on how how to control a 12 Volt Solenoid with a Raspberry Pi which operates at 5V) using a 5 Volt Relay. Solenoids are an immensely useful way to turn electrical energy into a linear motion. Solenoids come in a variety of different specifications with 5 Volt and 12 Volt being very common types used by makers.

I use two power packs to run this set up but if you only wanted to use a single power pack to run the system a Voltage Converter from 12 Volts to 5 Volts can be utilised, the VERTER 5V USB Buck-Boost would work perfectly in this application. Also, a really useful HAT (Hardware On Top) for the Raspberry Pi can be found here which provides control to 3 relays very elegantly - 3 Channel Relay Module Sheild Smart Home for Raspberry Pi .

"Read more"

5 Likes

Dear Tim,
Thank you very much on the tutorial on controlling a soleoid.

I have saved the page as a pdf file.

However,
I tried to download the associated code at the bottom of the page with associated hyperlink at https://core-electronics.com.au/media/kbase/471/Solenoid_Control3.py . I keep getting ā€œinternal server errorā€ whether I download as ā€œsave link asā€ or place the hyperlink in another tab of my browser.

Thank you,
Anthony of Sydney

5 Likes

Hmm, can confirm :thinking:

2 Likes

Tim,
Neat tutorial. Just a couple of things I noticed though.

  1. I wondered why you were connecting 3 wires to a relay and there was no protection diode. So I discovered the module you used has a transistor (and the diode) on it as well as red and green LEDs, which is quite handy to prototype stuff.
  2. I was confused by your code description and the reference to BCM when you connect to physical pin 12. I suggest you add a reference or two, but for simplicity the user may like to run the ā€˜pinoutā€™ command on their Pi to see a list of pins and their Broadcom names.
  3. Since the output has to be high for the relay to be off, it would be good practice to set it high straight after the setmode command. Then the relay has a determined state until you want to use it (possibly much later if you add other processing) in your code.

Dave

5 Likes

https://pinout.xyz/ is a fantastic pi pinout reference - including pinouts for a lot of HATs. Shows the difference between the physical connector pin number and the GPIO ir BCM numbering

4 Likes

Thank you very much for telling me mate :slight_smile: have fixed the link now.

3 Likes

Cheers for your input :slight_smile: Iā€™ll go back and clarify the comments on my code. I would like this to be a simple and clear as I possibly can make it so everyone can jump in, know whats going on and have a go. And definitely telling the GPIO pin to go High right after the setmode command is a great adjustment to the code when it is part of a bigger system.

Also big thanks for that Pinout reference Oliver. Super rad resource.

Tim

3 Likes

Dear Tim,
Thank you for that. It is now a zip file. It is easier now, because I have saved this tutorial as a pdf file and the zip file with the same name.
Thank you,
Anthony of Sydney

5 Likes

Hi Tim. I am new to this all. If I have a 24 VDC solenoid, do I still use the 5-volt relay?
Thanks!

1 Like

The relay referred to in that article has a DC rating of 30 Volts and 10 Amps. So it will work just fine with a 24v solenoid, provided that the solenoid does not draw more than 10A. Your solenoid should specify the current it requires, but it would be very unlikely to be anything like that high - for instance the Core 36v solenoid requires less than 3A

2 Likes

Hi, in the article you refer to a system that uses a buck converter. Do you have an article/guidance on how I would put the buck converter into a circuit with only one power pack?

Thanks.

2 Likes

Hey mate, one of my recent guides ā€˜How to Power High Power 3W LEDSā€™ I use a Buck converter. There will be some hardware differences however it does have a great 101 understanding of both choosing and adjusting the converter for a desired application.

Hopefully that will help you :slight_smile:

2 Likes

4 posts were split to a new topic: Pressing a button remotely

In this setup is it possible to use raspberry Pico instead of Raspberry Pi 3/4 ?

2 Likes

Hi Bala,

Welcome to the forum! :partying_face:

Yep, youā€™re definately able to do that. The initial statements will be slightly different (refer to the Pico SDK for appropriate use of MicroPython libraries with it), and you can essentially just use the toggle from Pin instead just to make it even shorter:

from machine import Pin
from time import sleep

pin = Pin(2, Pin.OUT)

while (True):
    pin.toggle()
    sleep(1)

(Iā€™ve used pin two arbitrarily as 0 and 1 ā€˜shouldā€™ be reserved for Serial)

2 Likes

Thanks Bryce for the response in short time
I will check it out

1 Like

Thank you for the video, Iā€™m able to get my solenoid to work but then when I use this solenoid https://www.amazon.com/Pneumatic-Solenoid-4V210-08-Pilot-Operated-Connection/dp/B081PTW87K/ref=asc_df_B081PTW87K/?tag=hyprod-20&linkCode=df0&hvadid=416671159365&hvpos=&hvnetw=g&hvrand=15306988513027111140&hvpone=&hvptwo=&hvqmt=&hvdev=m&hvdvcmdl=&hvlocint=&hvlocphy=9031531&hvtargid=pla-946136568397&psc=1&tag=&ref=&adgrpid=93604213093&hvpone=&hvptwo=&hvadid=416671159365&hvpos=&hvnetw=g&hvrand=15306988513027111140&hvqmt=&hvdev=m&hvdvcmdl=&hvlocint=&hvlocphy=9031531&hvtargid=pla-946136568397 it does not work, is there a difference that is causing this. Not sure how to go about this. Thank you, Iā€™ve been stuck in this for weeks so thought Iā€™d ask.

1 Like

The difference is likely that this is a pilot-operated device and the solenoid you were using previously was not. What do you mean by 'ā€˜does not workā€™? If you hear the solenoid click but the valve doesnā€™t open then that indicates that you donā€™t have the required pressure in the line to drive the valve piston.

Please nore that the correct link is https://www.amazon.com/Pneumatic-Solenoid-4V210-08-Pilot-Operated-Connection/dp/B081PTW87K/ref=asc_df_B081PTW87K/

1 Like

Hi Jeff, thank you for the information. I hear the click, that makes sense now. I will look for a direct acting solenoid instead.

2 Likes

Hi kuya Tim! Is it okay if i use 9V battery for this project?

1 Like