The 4 Channel 30A 5V Relay (Blue) is an electrically operated switch that allows you to control high voltage and high current devices using low voltage signals. It consists of a coil and a set of contacts. When the coil is energized, the contacts are pulled together, allowing current to flow. This relay module is commonly used in home automation, industrial automation, and various DIY projects.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Trigger Voltage | 5V DC |
Current Rating | 30A @ 250V AC / 30V DC |
Number of Channels | 4 |
Relay Type | SPDT (Single Pole Double Throw) |
Dimensions | 75mm x 55mm x 20mm |
Weight | 60g |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply for the relay module (5V) |
2 | GND | Ground |
3 | IN1 | Control signal for Relay 1 (Active Low) |
4 | IN2 | Control signal for Relay 2 (Active Low) |
5 | IN3 | Control signal for Relay 3 (Active Low) |
6 | IN4 | Control signal for Relay 4 (Active Low) |
7 | COM1 | Common terminal for Relay 1 |
8 | NO1 | Normally Open terminal for Relay 1 |
9 | NC1 | Normally Closed terminal for Relay 1 |
10 | COM2 | Common terminal for Relay 2 |
11 | NO2 | Normally Open terminal for Relay 2 |
12 | NC2 | Normally Closed terminal for Relay 2 |
13 | COM3 | Common terminal for Relay 3 |
14 | NO3 | Normally Open terminal for Relay 3 |
15 | NC3 | Normally Closed terminal for Relay 3 |
16 | COM4 | Common terminal for Relay 4 |
17 | NO4 | Normally Open terminal for Relay 4 |
18 | NC4 | Normally Closed terminal for Relay 4 |
// Example code to control a 4 Channel 30A 5V Relay with Arduino UNO
// Define relay control pins
const int relay1 = 2;
const int relay2 = 3;
const int relay3 = 4;
const int relay4 = 5;
void setup() {
// Initialize relay control pins as outputs
pinMode(relay1, OUTPUT);
pinMode(relay2, OUTPUT);
pinMode(relay3, OUTPUT);
pinMode(relay4, OUTPUT);
// Turn off all relays at the start
digitalWrite(relay1, HIGH);
digitalWrite(relay2, HIGH);
digitalWrite(relay3, HIGH);
digitalWrite(relay4, HIGH);
}
void loop() {
// Example sequence to turn on and off relays
digitalWrite(relay1, LOW); // Turn on Relay 1
delay(1000); // Wait for 1 second
digitalWrite(relay1, HIGH);// Turn off Relay 1
delay(1000); // Wait for 1 second
digitalWrite(relay2, LOW); // Turn on Relay 2
delay(1000); // Wait for 1 second
digitalWrite(relay2, HIGH);// Turn off Relay 2
delay(1000); // Wait for 1 second
digitalWrite(relay3, LOW); // Turn on Relay 3
delay(1000); // Wait for 1 second
digitalWrite(relay3, HIGH);// Turn off Relay 3
delay(1000); // Wait for 1 second
digitalWrite(relay4, LOW); // Turn on Relay 4
delay(1000); // Wait for 1 second
digitalWrite(relay4, HIGH);// Turn off Relay 4
delay(1000); // Wait for 1 second
}
By following this documentation, users can effectively integrate and utilize the 4 Channel 30A 5V Relay (Blue) in their projects, ensuring reliable and safe operation.