Manufacturer: AC
Part ID: Relay
The 8 Channel 5V Relay Module is a versatile electronic component designed to control high-voltage devices using low-voltage signals, typically from a microcontroller such as an Arduino UNO. Each of the 8 relays on the module can independently switch devices on or off, making it ideal for automation, home control systems, and industrial applications.
This module is particularly useful for projects requiring the control of multiple high-power devices with a single microcontroller.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Trigger Voltage | 3.3V to 5V (compatible with most microcontrollers, including Arduino) |
Relay Channels | 8 |
Maximum Load (AC) | 250V AC @ 10A |
Maximum Load (DC) | 30V DC @ 10A |
Isolation | Optocoupler isolation for each channel |
Indicator LEDs | Yes (one LED per channel to indicate relay status) |
Dimensions | ~138mm x 56mm x 18mm |
Weight | ~120g |
Pin Name | Description |
---|---|
VCC | Connect to 5V DC power supply (powers the relay module). |
GND | Ground connection. |
IN1 - IN8 | Control pins for each relay channel. A LOW signal activates the corresponding relay. |
Each relay has three output terminals:
Terminal | Description |
---|---|
NO (Normally Open) | The device is disconnected when the relay is inactive. Connect the load here if you want it to turn ON when the relay is activated. |
NC (Normally Closed) | The device is connected when the relay is inactive. Connect the load here if you want it to turn OFF when the relay is activated. |
COM (Common) | Common terminal for the relay. Connect the power source or ground of the load here. |
Power the Module:
VCC
pin of the relay module to the 5V pin on the Arduino UNO. GND
pin of the relay module to the GND pin on the Arduino UNO.Control Pins:
IN1
to IN8
pins of the relay module to the desired digital pins on the Arduino UNO. For example, you can connect IN1
to pin 2, IN2
to pin 3, and so on.Load Connections:
NO
or NC
terminal, depending on whether you want the load to be ON or OFF by default. COM
terminal.Code Example:
Below is an example Arduino sketch to control the relays:
// 8 Channel Relay Control Example
// This code demonstrates how to control an 8-channel relay module
// using an Arduino UNO. Each relay is toggled ON and OFF sequentially.
// Define the relay control pins
const int relayPins[8] = {2, 3, 4, 5, 6, 7, 8, 9};
void setup() {
// Initialize all relay pins as OUTPUT
for (int i = 0; i < 8; i++) {
pinMode(relayPins[i], OUTPUT);
digitalWrite(relayPins[i], HIGH); // Set all relays to OFF initially
}
}
void loop() {
// Sequentially turn each relay ON and OFF
for (int i = 0; i < 8; i++) {
digitalWrite(relayPins[i], LOW); // Turn relay ON
delay(1000); // Wait for 1 second
digitalWrite(relayPins[i], HIGH); // Turn relay OFF
delay(1000); // Wait for 1 second
}
}
Issue | Possible Cause | Solution |
---|---|---|
Relays not activating | Insufficient power supply | Ensure the module is powered with a stable 5V DC source. |
Relays activate randomly | Electrical noise or interference | Use decoupling capacitors or shield the module from interference sources. |
Load not turning ON/OFF | Incorrect wiring of the load to the relay terminals | Double-check the connections to the NO, NC, and COM terminals. |
Arduino resets when relays activate | Power supply cannot handle the current surge | Use a separate power supply for the relay module. |
Can I use this module with a 3.3V microcontroller (e.g., ESP32)?
Yes, the module is compatible with 3.3V logic levels, but ensure the relays are powered with 5V.
Can I control AC and DC loads simultaneously?
Yes, as long as the total load does not exceed the relay ratings.
Do I need external flyback diodes for the relays?
No, the module already includes flyback diodes to protect against voltage spikes.
Can I use fewer than 8 relays?
Yes, you can use only the relays you need. Leave the unused control pins unconnected.
This documentation provides a comprehensive guide to using the 8 Channel 5V Relay Module. Whether you're a beginner or an experienced user, this module is a reliable choice for controlling multiple devices in your projects.