

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 control systems to switch devices such as lights, fans, motors, or other high-power loads. It operates at 5V, making it compatible with most microcontrollers, including Arduino and Raspberry Pi.








Below are the key technical details of the 1 Channel Relay 5V module:
| 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 for signal isolation |
| Dimensions | ~50mm x 26mm x 18mm |
| Weight | ~15g |
The 1 Channel Relay 5V module has the following pinout:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Connect to 5V power supply (e.g., from Arduino or external source). |
| 2 | GND | Ground connection. |
| 3 | IN | Control signal input. A HIGH signal activates the relay, and a LOW signal deactivates it. |
| Pin | 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 connect and control the 1 Channel Relay 5V module 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 Stuck in ON or OFF State:
Microcontroller Resets When Relay Activates:
Q1: Can I use the 1 Channel Relay 5V 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: Can this relay module switch DC loads?
A2: Yes, it can switch DC loads up to 30V and 10A.
Q3: Is the relay module safe for high-voltage applications?
A3: Yes, but ensure proper insulation and safety precautions when working with voltages up to 250V AC.
Q4: Can I control multiple relays with one microcontroller?
A4: Yes, as long as each relay is connected to a separate digital output pin and the microcontroller can handle the total current draw.