

The 1 Channel Relay 5V is an electromechanical switch that allows a low voltage control signal (e.g., from a microcontroller) to control a higher voltage circuit. This module is widely used in automation, home appliances, and industrial control systems. It is ideal for switching devices such as lights, fans, motors, or other high-power loads while isolating the control circuit from the high-power circuit.








| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Trigger Voltage | 3.3V to 5V DC |
| Maximum Load Voltage | 250V AC / 30V DC |
| Maximum Load Current | 10A |
| Relay Type | SPDT (Single Pole Double Throw) |
| Isolation | Optocoupler-based isolation |
| Dimensions | ~50mm x 26mm x 18mm |
| Indicator LED | Yes (indicates relay status) |
| Pin Name | Description |
|---|---|
| VCC | Power supply pin for the relay module (5V DC). |
| GND | Ground connection for the module. |
| IN | Control signal input pin. A HIGH signal activates the relay. |
| COM | Common terminal of the relay switch. |
| 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. |
Below is an example of how to control the relay using an Arduino UNO to toggle a light bulb.
// 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 initially
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay ON (activates the connected device)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF (deactivates the connected device)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Relay does not activate | Insufficient control signal voltage | Ensure the IN pin receives 3.3V-5V signal. |
| Relay clicks but load does not work | Incorrect load wiring | Verify connections to COM, NO, and NC. |
| Module overheats | Exceeding load current or voltage rating | Reduce load to within specified limits. |
| Indicator LED does not light up | No power to the module | Check VCC and GND connections. |
Can I use this relay with a 3.3V microcontroller?
Is the relay safe for high-voltage applications?
Can I control multiple relays with one Arduino?
What happens if I connect the load incorrectly?
By following this documentation, you can effectively use the 1 Channel Relay 5V in your projects for safe and reliable control of high-power devices.