The Omron GV5-2 12VDC 2A is a robust power relay module designed to switch high current loads using a low current control signal. This relay is ideal for a wide range of applications, including industrial control systems, home automation, and robotics. Its ability to handle up to 2A of current at 12VDC makes it suitable for controlling lights, motors, and other devices.
Pin Number | Description | Notes |
---|---|---|
1 | Coil Voltage (VCC) | Connect to 12VDC control signal |
2 | Coil Ground (GND) | Connect to control signal ground |
3 | Common (COM) | Connect to the common line of the load |
4 | Normally Open (NO) | Connect to the load; closed when relay is activated |
5 | Normally Closed (NC) | Connect to the load; closed when relay is deactivated |
Powering the Coil:
Load Connection:
Control Signal:
// Define relay control pin
const int relayPin = 2;
void setup() {
// Set the relay control pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Turn on the relay
digitalWrite(relayPin, HIGH);
delay(1000); // Wait for 1 second
// Turn off the relay
digitalWrite(relayPin, LOW);
delay(1000); // Wait for 1 second
}
Q: Can I use this relay with an AC load? A: No, the Omron GV5-2 is rated for DC loads only.
Q: What is the purpose of the NC terminal? A: The NC terminal allows the load to be connected and powered when the relay is not activated.
Q: How can I extend the life of the relay? A: Avoid switching loads that exceed the rated current and voltage. Use protective circuits like flyback diodes and snubbers.
For further assistance, consult the manufacturer's datasheet or contact technical support.