

The Relay 5V 1 Channel is an electromechanical switch that operates at a 5V input signal, enabling low-power control of high-power devices. It is widely used in applications where electrical isolation and high-power switching are required. This relay module features a single channel for switching, making it ideal for controlling devices such as lights, motors, and appliances.








The following table outlines the key technical details of the Relay 5V 1 Channel module:
| Parameter | Specification |
|---|---|
| Operating Voltage | 5V DC |
| Trigger Voltage | 3.3V to 5V DC |
| Maximum Load Voltage | 250V AC / 30V DC |
| Maximum Load Current | 10A |
| Channels | 1 |
| Isolation | Optocoupler isolation |
| Dimensions | ~50mm x 26mm x 18mm |
| Weight | ~15g |
The Relay 5V 1 Channel module typically has 6 pins or terminals. The table below describes each pin:
| Pin Name | Type | Description |
|---|---|---|
| VCC | Power Input | Connect to 5V DC power supply. |
| GND | Ground | Connect to the ground of the power supply or microcontroller. |
| IN | Signal Input | Control signal pin. A HIGH signal activates the relay, and a LOW signal deactivates it. |
| COM | Common | Common terminal for the relay switch. |
| NO | Normally Open | The terminal that remains disconnected when the relay is inactive. |
| NC | Normally Closed | The terminal that remains connected to COM when the relay is inactive. |
Below is an example of how to control the Relay 5V 1 Channel using an Arduino UNO:
// Example: Controlling a 5V Relay with Arduino UNO
// This code toggles the relay ON and OFF every 2 seconds.
#define RELAY_PIN 7 // Define the pin connected to the relay module's IN pin
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
digitalWrite(RELAY_PIN, LOW); // Ensure the relay starts in the OFF state
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(2000); // Wait for 2 seconds
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(2000); // Wait for 2 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Stuck in One State:
Interference with Microcontroller:
Q1: Can I use the relay with a 3.3V microcontroller?
A1: Yes, the relay can be triggered with a 3.3V signal, but ensure the VCC pin is powered with 5V DC.
Q2: Is the relay safe for switching AC appliances?
A2: Yes, the relay is designed for AC loads up to 250V and 10A. However, ensure proper insulation and safety precautions when working with high voltages.
Q3: Can I control multiple relays with one Arduino?
A3: Yes, you can control multiple relays by connecting their IN pins to different digital pins on the Arduino. Ensure the Arduino can supply sufficient current for all relays.
Q4: Why is the relay clicking but not switching the load?
A4: This may occur if the load is not properly connected or if the load exceeds the relay's rated capacity. Double-check the wiring and load specifications.
By following this documentation, you can effectively use the Relay 5V 1 Channel module in your projects while ensuring safety and reliability.