![](https://electroboat.in/uploads/media/2024/619wazo4kQL__AC_UF1000,1000_QL80_.jpg)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(2)5.jpeg&width=620&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/619wazo4kQL__AC_UF1000,1000_QL80_.jpg&width=175&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(2)5.jpeg&width=172&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/619wazo4kQL__AC_UF1000,1000_QL80_.jpg&width=300&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/images_(2)5.jpeg&width=300&quality=80)
DC 5V Bluetooth 4, Channels Relay Module, Internet Smart Remote, Control Mobile Phone, Switch Wireless Relay
It is a 4 Channel Isolated 5V 10A Relay Module, A wide range of microcontrollers such as Arduino, AVR, PIC, ARM, and so on can control it. It is also able to control various appliances and other types of equipment with a large current. Relay output maximum contact is AC250V 10A and DC30V 10A.
₹ 299 ₹399
399
![](https://electroboat.in/assets/front_end/classic/images/cod_logo.png)
![](https://electroboat.in/assets/front_end/classic/images/cancelable.png)
![](https://electroboat.in/assets/front_end/classic/images/returnable.png)
Made In : | India |
Add FAQ
A 5V DC 4-Channel Relay Module is a device used to control high-voltage electrical appliances or devices using a low-voltage microcontroller (e.g., Arduino, Raspberry Pi). The relay module acts as an intermediary between a low-voltage microcontroller and high-power devices such as motors, lights, or other appliances.
Key Features of a 5V DC 4-Channel Relay Module:
-
Relay Channels:
- The module typically has 4 relays, which means it can control up to 4 different high-voltage devices independently using a single module.
-
5V DC Power Supply:
- The module operates on 5V DC, which is standard for microcontroller systems such as Arduino.
- The control side (microcontroller or Arduino) sends a 5V signal to trigger the relay, and the relay then activates the high-voltage side.
-
Isolation:
- Most relay modules include optocouplers for isolation, ensuring that the low-voltage side (Arduino) is electrically separated from the high-voltage side (appliance). This protects the microcontroller from high-voltage spikes.
-
Relay Type:
- Typically, the relays used are SPDT (Single Pole Double Throw) or DPDT (Double Pole Double Throw), which means they can switch between two circuits.
-
Triggering:
- Each relay has a control input (usually a digital pin on the microcontroller), which can be used to trigger the relay. When the control pin is set to HIGH, the relay switches to ON, and when the pin is set to LOW, it switches to OFF.
-
Mechanical Contact Ratings:
- The relay typically has contact ratings such as 10A at 250V AC or 30V DC, depending on the relay module. This means the relay can switch electrical loads up to these limits.
-
Status Indicators:
- Many relay modules include LED indicators for each channel, showing the status of the relay (ON/OFF). This is useful for debugging and monitoring.
Pinout and Connections:
Here’s a general pinout and connections for a 5V DC 4-Channel Relay Module:
Pin Name | Description |
---|---|
VCC | Connect to 5V on Arduino or microcontroller. |
GND | Connect to GND on Arduino or microcontroller. |
IN1, IN2, IN3, IN4 | Control pins connected to Arduino digital pins (for controlling each relay). Typically connected to pins 2, 3, 4, 5. |
NC (Normally Closed) | The common terminal when the relay is OFF. |
NO (Normally Open) | The common terminal when the relay is ON. |
COM (Common) | The common terminal, where the high-voltage load is connected. |
How it Works:
- The VCC pin provides the 5V power required to drive the relay module.
- The IN1, IN2, IN3, IN4 pins control the respective relays. These pins receive 5V signals from the Arduino or microcontroller. When the pin is set HIGH, the relay turns ON, closing the circuit between the COM and NO pins (or between COM and NC if switched differently).
- The NO and NC pins are used for controlling high-voltage circuits. NO (Normally Open) means that the circuit is open when the relay is off and closed when the relay is on. NC (Normally Closed) means the circuit is closed when the relay is off and opens when the relay is on.
Example: Controlling a 5V DC 4-Channel Relay Module with Arduino
Here’s a simple example to control a 5V DC 4-Channel Relay Module with an Arduino.
Wiring:
- VCC pin → Connect to 5V on Arduino.
- GND pin → Connect to GND on Arduino.
- IN1, IN2, IN3, IN4 → Connect to digital pins 2, 3, 4, and 5 on Arduino.
- COM, NO, NC → These pins are used for controlling external devices (e.g., motors, lights). You will connect COM to one terminal of the device, and NO to the other terminal.
Arduino Code:
// Define the relay control pins
int relayPin1 = 2;
int relayPin2 = 3;
int relayPin3 = 4;
int relayPin4 = 5;
void setup() {
// Initialize the relay pins as output
pinMode(relayPin1, OUTPUT);
pinMode(relayPin2, OUTPUT);
pinMode(relayPin3, OUTPUT);
pinMode(relayPin4, OUTPUT);
// Initialize all relays to OFF
digitalWrite(relayPin1, LOW);
digitalWrite(relayPin2, LOW);
digitalWrite(relayPin3, LOW);
digitalWrite(relayPin4, LOW);
}
void loop() {
// Turn on Relay 1
digitalWrite(relayPin1, HIGH);
delay(1000); // Wait for 1 second
// Turn off Relay 1
digitalWrite(relayPin1, LOW);
delay(1000); // Wait for 1 second
// Turn on Relay 2
digitalWrite(relayPin2, HIGH);
delay(1000);
// Turn off Relay 2
digitalWrite(relayPin2, LOW);
delay(1000);
// Turn on Relay 3
digitalWrite(relayPin3, HIGH);
delay(1000);
// Turn off Relay 3
digitalWrite(relayPin3, LOW);
delay(1000);
// Turn on Relay 4
digitalWrite(relayPin4, HIGH);
delay(1000);
// Turn off Relay 4
digitalWrite(relayPin4, LOW);
delay(1000);
}
Explanation of the Code:
- Pin Initialization:
- In the
setup()
, we initialize the pins connected to the relay (pins 2, 3, 4, and 5) as output pins.
- In the
- Control Relays:
- The
loop()
function toggles each relay on and off with a 1-second delay. When the relay control pin is set to HIGH, the relay closes and connects the COM to NO, thus powering the connected high-voltage device.
- The
Applications:
- Home Automation: Turning on/off appliances such as lights, fans, and home security systems.
- Industrial Automation: Controlling motors, pumps, and machinery remotely.
- Robotics: Switching on/off actuators, motors, and servos in a robot.
- Automated Systems: For controlling devices like water pumps, heating systems, etc.
- Security Systems: For controlling alarms or triggering devices in security setups.
Safety Considerations:
- High Voltage Handling: Be cautious when working with high-voltage devices. Ensure the load is properly isolated and the circuit is safe.
- Relay Rating: Verify that the relay’s current and voltage ratings match the devices you are controlling.
- Optocoupler Isolation: Many relay modules include optocouplers to protect your low-voltage circuits from high-voltage spikes. Be sure to use this feature to safeguard your microcontroller.
Conclusion:
A 5V DC 4-Channel Relay Module is a useful tool for controlling multiple high-voltage devices with a low-voltage microcontroller. It’s easy to interface with Arduino or other microcontrollers, and its applications span from home automation to industrial control systems. By using relays, you can safely manage high-power devices while keeping the control system at a low voltage, ensuring the safety of both the user and the equipment.
0 Reviews For this Product
![](https://electroboat.in/uploads/seller/electroboat_logo3.jpeg)