

The 1 Channel Relay 5V module 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 to safely interface low-power control circuits with high-power devices such as lights, motors, and heaters.








| 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 Method | Optocoupler |
| Dimensions | ~50mm x 26mm x 18mm |
| Weight | ~15g |
| Pin Name | Description |
|---|---|
| VCC | Connect to the 5V power supply (positive terminal). |
| GND | Connect to the ground (negative terminal) of the power supply. |
| IN | Control signal input. A HIGH signal activates the relay, and a LOW signal |
| deactivates it. | |
| COM | Common terminal of the relay switch. |
| NO | Normally Open terminal. Connect the load here if you want it to be |
| powered only when the relay is activated. | |
| NC | Normally Closed terminal. Connect the load here if you want it to be |
| powered when the relay is deactivated. |
Below is an example of how to control the 1 Channel Relay 5V module using an Arduino UNO.
// Example code to control a 1 Channel Relay 5V module with Arduino UNO
#define RELAY_PIN 7 // Define the digital pin connected to the relay module
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
digitalWrite(RELAY_PIN, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(5000); // Keep it ON for 5 seconds
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(5000); // Keep it OFF for 5 seconds
}
Relay Not Switching:
Load Not Powering On/Off:
Relay Clicking Rapidly:
Burnt Relay Module:
Q1: Can I use the relay module with a 3.3V microcontroller?
A1: Yes, the relay module can be triggered with a 3.3V control signal, but ensure the VCC pin is powered with 5V.
Q2: Is the relay module safe for high-voltage applications?
A2: Yes, the relay is designed for high-voltage applications, but proper isolation and safety precautions must be followed.
Q3: Can I control multiple relays with one Arduino?
A3: Yes, you can control multiple relays by connecting each relay's IN pin to a separate digital pin on the Arduino.
Q4: How do I know if the relay is activated?
A4: The relay module typically includes an onboard LED that lights up when the relay is activated.
By following this documentation, you can effectively use the 1 Channel Relay 5V module in your projects for safe and reliable control of high-power devices.