5V 4-Channel Relay Module With Arduino
by Rachana Jain in Circuits > Arduino
434 Views, 2 Favorites, 0 Comments
5V 4-Channel Relay Module With Arduino

Relays are essential components in electronic projects that allow low-power microcontrollers like Arduino to control high-power devices such as lights, fans, and appliances. A 5V 4-Channel Relay Module is a widely used interface that enables switching multiple AC or DC loads with ease.
In this tutorial, we will explore how to interface a 5V 4-Channel Relay Module with an Arduino. We will cover the relay module’s pinout, working principle, internal circuitry, and specifications, followed by a practical example to control LED and motor using Arduino.
Supplies
How Relays Work?
A relay is an electrically operated switch that allows a low-voltage signal to control a higher voltage or current load. Relays use an electromagnetic coil to mechanically switch contacts, isolating the control circuit from the load circuit. When current flows through the coil, it generates a magnetic field that pulls a metal contact, closing or opening the circuit. This makes relays ideal for controlling high-power devices like motors, lights, and appliances using microcontrollers like Arduino. The 5V four-channel relay module used in Arduino projects is an EMR type, which can handle up to 250V AC or 30V DC loads.
5V Four-Channel Relay Module Pinout

A 5V four-channel relay module consists of multiple pins that enable communication with a microcontroller. The pinout is as follows:
Power and Control Pins
- VCC — Powers the module (5V input from Arduino or an external power source)
- GND — Ground connection
- IN1 — Control signal for Relay 1
- IN2 — Control signal for Relay 2
- IN3 — Control signal for Relay 3
- IN4 — Control signal for Relay 4
These input pins (IN1 to IN4) are active LOW, meaning that sending a LOW (0V) signal to any input pin activates the corresponding relay.
Relay Output Connections
Each of the four relays has a set of three terminals:
- COM (Common Terminal) — The common contact for the relay.
- NO (Normally Open Terminal) — When the relay is inactive, this terminal is disconnected from COM. When the relay is activated, it connects to COM, completing the circuit.
- NC (Normally Closed Terminal) — When the relay is inactive, this terminal remains connected to COM. When the relay is activated, it disconnects from COM.
To control an external device, you can use either the NO or NC terminal based on your application requirements.
Internal Circuit Diagram of 5V Four-Channel Relay Module

The internal circuit of the relay module consists of the following key components:
- Microcontroller Interface — The IN1 to IN4 pins receive signals from the Arduino or other microcontrollers.
- Transistor Driver Circuit — Each relay is controlled by a transistor (e.g., NPN type) that acts as a switch, allowing the control signal to energize the relay coil.
- Flyback Diodes — These diodes prevent voltage spikes when the relay is turned off, protecting the transistor and microcontroller.
- Optocouplers — These components isolate the low-voltage Arduino circuit from the high-voltage relay circuit, improving safety and reducing electrical noise.
- Relay Coils and Contacts — The relays contain electromagnetic coils that switch the COM, NO, and NC terminals.
This design ensures reliable operation while minimizing potential damage to the microcontroller or power supply.
Four-Channel Relay Module Specifications
Below are the key specifications of the 5V four-channel relay module:
- Number of Channels: 4
- Supply voltage — 3.75V to 6V
- Trigger current at input pins– 5mA
- Current through coil when the relay is active — ~70mA (single), ~300mA (all four)
- Relay maximum current at output– 10A
- Relay maximum contact voltage at output– 250VAC, 30VDC
- LED Indicators: Yes (each relay has an LED to indicate its ON/OFF status)
- Dimensions: Varies by manufacturer, typically around 75mm x 55mm x 18mm
This module is widely used in home automation, industrial control, and smart electronics projects, allowing microcontrollers to safely control high-power electrical devices.
Interfacing Four-Channel Relay Module With Arduino

Now let us learn how to interface 4-Channel Relay module with Arduino.
Here, we will control a motor and an RGB LED. First, the motor will turn ON, and then the LED will cycle through different colors as its red, blue, and green anodes are connected to the supply one by one. Finally, the motor will stop, and the LED will turn OFF.
Code for Interfacing Four-Channel Relay Module With Arduino
By understanding how relays work and how to use the 5V four-channel relay module, you can integrate it into various projects requiring high-voltage switching. For a complete guide on wiring and coding the relay module with Arduino, visit Interfacing 5V 4-Channel Relay Module with Arduino