The 12VDC 1 Channel Relay is an electromechanical switch that operates on a 12-volt DC input signal. It allows a low-power control signal to switch a higher power circuit, making it ideal for isolating and controlling high-voltage or high-current loads. This relay is commonly used in automation systems, home appliances, and microcontroller-based projects such as Arduino or Raspberry Pi applications.
The following table outlines the key technical details of the 12VDC 1 Channel Relay:
Parameter | Specification |
---|---|
Operating Voltage | 12V DC |
Trigger Voltage | 3V to 12V DC |
Maximum Load Voltage | 250V AC / 30V DC |
Maximum Load Current | 10A |
Relay Type | SPDT (Single Pole Double Throw) |
Isolation | Optocoupler isolation |
Dimensions | ~50mm x 26mm x 18mm |
Weight | ~20g |
The relay module typically has 6 pins or terminals, as described below:
Pin | Name | Description |
---|---|---|
1 | VCC | Connect to 12V DC power supply. |
2 | GND | Connect to ground of the power supply. |
3 | IN | Control signal input. A HIGH signal activates the relay, and a LOW signal deactivates it. |
Terminal | Name | Description |
---|---|---|
1 | COM | Common terminal. Connect to one side of the load or power source. |
2 | NO | Normally Open terminal. Connect to the load if you want it to be OFF by default. |
3 | NC | Normally Closed terminal. Connect to the load if you want it to be ON by default. |
Below is an example of how to control the 12VDC 1 Channel Relay using an Arduino UNO:
// Define the relay control pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off at startup
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Clicking but No Output:
Q: Can I use this relay with a 5V control signal?
A: Yes, the relay can be triggered with a control signal as low as 3V DC. However, ensure the VCC pin is powered with 12V DC.
Q: Is the relay safe for switching AC loads?
A: Yes, the relay can handle AC loads up to 250V and 10A. Ensure proper insulation and safety precautions when working with high-voltage AC.
Q: Can I use this relay with an inductive load like a motor?
A: Yes, but it is recommended to use a flyback diode across the load to protect the relay from voltage spikes caused by the inductive load.
Q: What is the difference between NO and NC terminals?
A: The NO (Normally Open) terminal is disconnected from COM by default and connects when the relay is activated. The NC (Normally Closed) terminal is connected to COM by default and disconnects when the relay is activated.