The Relevo 4 Canales is a module that contains four relays, allowing the control of four independent circuits using low-power signals. This component is widely used in applications where it is necessary to control high-power devices with a microcontroller or other low-power control systems. Common use cases include home automation, industrial control systems, and robotics.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Trigger Voltage | 3.3V - 5V DC |
Relay Type | SPDT (Single Pole Double Throw) |
Max Switching Voltage | 250V AC / 30V DC |
Max Switching Current | 10A |
Number of Channels | 4 |
Dimensions | 75mm x 55mm x 19mm |
Pin Name | Description |
---|---|
VCC | Power supply (5V DC) |
GND | Ground |
IN1 | Control signal for Relay 1 (Active Low) |
IN2 | Control signal for Relay 2 (Active Low) |
IN3 | Control signal for Relay 3 (Active Low) |
IN4 | Control signal for Relay 4 (Active Low) |
Relay | NO (Normally Open) | COM (Common) | NC (Normally Closed) |
---|---|---|---|
Relay 1 | NO1 | COM1 | NC1 |
Relay 2 | NO2 | COM2 | NC2 |
Relay 3 | NO3 | COM3 | NC3 |
Relay 4 | NO4 | COM4 | NC4 |
// Example code to control a 4-channel relay module 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 should be able to effectively integrate and utilize the Relevo 4 Canales module in their projects, ensuring reliable and efficient control of multiple circuits.