

The 12V Single Channel Relay is an electromechanical switch that operates at 12 volts. It allows a low-power control signal to control a higher power circuit, making it ideal for applications where electrical isolation and high-power switching are required. The relay consists of an electromagnet, a set of contacts, and a spring mechanism. When the control signal is applied, the electromagnet activates, closing or opening the contacts to control the connected circuit.








The 12V Single Channel Relay module typically has the following pins:
| Pin Name | Description |
|---|---|
| VCC | Connect to 12V DC power supply for the relay coil |
| GND | Ground connection |
| IN | Control signal input (3.3V or 5V logic level) |
| Pin Name | Description |
|---|---|
| COM | Common terminal for the load |
| NO | Normally Open terminal (connected to COM when |
| the relay is activated) | |
| NC | Normally Closed terminal (connected to COM when |
| the relay is not activated) |
Power the Relay Module:
Control Signal:
Load Connection:
Circuit Isolation:
Below is an example of how to control a 12V Single Channel Relay using an Arduino UNO:
// Example code to control a 12V Single Channel Relay with Arduino UNO
const int relayPin = 7; // Pin connected to the relay module's IN pin
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, LOW); // Turn the relay off
delay(5000); // Keep the relay off for 5 seconds
}
Note: Ensure the Arduino's ground (GND) is connected to the relay module's ground (GND).
Relay Not Activating:
Load Not Switching:
Relay Clicking but No Load Response:
Voltage Spikes Damaging the Circuit:
Q1: Can I use the relay with a 5V power supply?
A1: No, the relay coil requires a 12V DC power supply to operate. However, the control signal can be 3.3V or 5V, depending on the module.
Q2: Is the relay suitable for switching AC loads?
A2: Yes, the relay can switch AC loads up to 250V, provided the current does not exceed 10A.
Q3: Can I control the relay directly with a sensor?
A3: No, most sensors cannot provide sufficient current to drive the relay. Use a microcontroller or a transistor as an intermediary.
Q4: How do I know if the relay is working?
A4: Most relay modules have an onboard LED that lights up when the relay is activated. Additionally, you may hear a clicking sound when the relay switches.