🔧 Unleash the Power of Automation!
The 4 Channel DC 5V Relay Module is a versatile control interface designed for high-current applications, supporting up to 10A at 250V AC and 30V DC. Ideal for use with Arduino, Raspberry Pi, and other microcontrollers, this module features LED indicators for real-time status updates, making it perfect for both industrial and smart home applications.
Contact Current Rating | 10 Amps |
Maximum Switching Current | 10 Amps |
Minimum Switching Voltage | 5 Volts |
Operation Mode | Automatic |
Coil Voltage | 5 Volts |
Contact Type | Form C Or Spdt |
Current Rating | 10 Amps |
Specification Met | Ma |
M**T
This board + Raspberry Pi + good power supply = A great combination!
Excellent board for Raspberry Pi. Assuming you have a solid power supply, you can run this board off the +5v provided on the pin header (Pin #2). The relay board is fully buffered, meaning that the relay coils are not directly driven from the GPIO pins which protects the Pi and means that this board is plug and play. If you're going to be doing a lot of work with the RasPi, I highly recommend a USB voltmeter/ammeter combo so you can monitor your power usage. At full load, you want to ensure that your voltage on your USB port is as close to 5.0VDC as possible, anything less than 4.65VDC will cause problems with the Pi and stability. Your amperage should never exceed the USB power supply's capability. I use a 2A (2000mA) power supply and with full load (all relays on), the board + Raspberry Pi B+ only gets to .56A (560mA) so I'm well with spec. With all relays off, I pull about .24A (240mA)HOW TO HOOK IT UP:The board has a six pin header labeled GND, IN1, IN2, IN3, IN4, VCC and a two pin jumpered header labelled VCC/JD-VCC. Leave the jumper installed. For GND, you can connect to any of the GND pins on the Pi's header (Pins 6,9,14,20,25,30,34,39). For VCC, connect to pin 2 (+5V). Connect each of the IN pins to a GPIO pin (I used GPIO 8,9,10,11 which are pins 24,19,21,23 respectively).HOW TO CONTROL IT:Use Python (should be available in your RasPi distro) along with the RPI.GPIO library. You'll need to run your scripts with sudo as manipulating the GPIO pins requires root access. You can set the GPIO pin using GPIO.output(PIN, True) to turn off the relay, and GPIO.output(PIN, False) to turn it on. My only nitpick is that the logic is backwards. Driving a GPIO pin high (TRUE), should turn on the relay while driving the GPIO pin low (FALSE) should turn it off, but it's easily fixed in software.Pros: Plug and play, just works. Will be getting more of these. You don't have to worry about building interface circuits, transistors, load calculations down to the mA or anything overly complicated. Basic research into the GPIO library for Python, a couple of GPIO pinouts for the RasPi and I was up and running within minutes.Cons: Logic is backwards, you have to send a GPIO pin LOW to turn on the relay but this is a very minor thing and can be easily fixed in software.Verdict: If you are looking to be able to control equipment using a Raspberry Pi, this is the board to use.
C**D
Worked great!
This is a solid board that is easy to use. It can be triggered by either 3.3V or 5V Arduinos and probably most other controllers. (3.3V setup is different than 5V setup) I used this board with an e-cig cartridge and high amp batteries to create a steampunk hat that puffs "steam".Simple Setup (using Arduino UNO):Connect the VCC to the 5V power supplyConnect the GND to the ground on the controllerConnect IN1-4 to DIO pins on the controllerLeave the JD-VCC to VCC jumperConnect your common to the center pole on the relay and your feed line to the left pole for Normally Open (off) and right pole for Normally Closed (on).Program your controller to digitalWrite(pin, LOW) when you want the relays to switch.Pros:Simple design10A relays are good for most requirementsCompactCons:None
J**E
Very easy to operate..note: Activates on 'low' signal
I needed to control 4 manual switches, and hooked this up to an arduino and then soldered it to each switch. It has worked great, and I was really happy with how clean the wiriing ended up. Since all 4 are on one board, you only need one power/ground connection. The rest were very straightforward....simply hook a GPIO to each of the ports and off you go.One thing that tripped me up is that it activates when you send a LOW vs. HIGH. One other thing that I thought was really really nice is that there is a built in LED indicator of which ones are activated and which aren't. Overall I love how simple this was and will probably get more for future relay work
A**L
No documentation but otherwise solid board
1 star off for no documentation but otherwise a very cost effective relay board. Provides optical isolation and some degree of physical isolation. I would judge this board suitable for light-duty AC Mains usage. The unit works well with my Raspberry Pi 2 and Pi 3. I will be buying more.Addendum for Pi users. When the Pi first boots the GPIO pins are not yet defined as outputs. The LEDs on the relay board are dimly lit which suggests there are pull-down resistors in operation. However, once you define the GPIO pins as outputs the relays immediately switch on. You can turn off the relays by sending the GPIO output high (GPIO.output(xx, True) where xx is the corresponding pin number).To resolve these issues I decided to add inverters between the GPIO pins and the relay card. For this I chose a quad, 2-input schmitt NAND gate device (4093B). I also added pull-down resistors (47k ohm) to the 4093B inputs because when you cleanup the GPIO library (under Python) or shutdown the Pi, the GPIO pins are floating - this leads to undesirable relay chatter without the pull-downs. You can power the 4093B from the 3.3V power supply on the Pi's interface. You can probably substitute a 4011 Quad NAND for the 4093 but I haven't tried it. The picture shows my inverter card which solders direct to the relay card.Using GPIO pins 23 through 26 the code to initialize then turn on relays 1 and 3 would look something like this:import RPi.GPIO as GPGP.setmode(GP.BCM)GP.setup([23,24,25,26], GP.OUT)GP.output([23,24,25,26], [True, False, True, False])...to turn on / off relay 2 would be:GP.output(24, True)GP.output(24, False)...GP.cleanup()
C**V
Nice construction with clearly marked connections
With low side input voltage the board is great for 3.3 and 5V micro controllers or single board computers (e.g. Raspberry Pi). The board has been in service for a year without any problems (switching 2 to 8amps)
F**O
good item
Very Happy whit my purchase
C**N
Buen producto
Funciona perfecto
C**E
falta informacion tecnica
la tarjeta no trae nada de información, aunque puede ser intuitiva la manera de conectar, siempre es útil que se proporciona
Trustpilot
2 days ago
1 week ago