

The 1 Channel Relay 5V is an electromechanical switch module 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 (activate the load)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF (deactivate the load)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Stuck in One State:
Q: Can I use the relay module with a 3.3V microcontroller?
A: Yes, the relay module can be triggered with a 3.3V control signal, but ensure the VCC pin is still powered with 5V.
Q: Is the relay module safe for high-voltage applications?
A: Yes, the relay is designed for high-voltage applications up to 250V AC, but proper insulation and safety precautions must be followed.
Q: Can I control multiple relays with one Arduino?
A: Yes, you can control multiple relay modules by connecting each relay's IN pin to a separate digital output pin on the Arduino.
Q: Why is the relay making a clicking sound?
A: The clicking sound is normal and indicates the relay is switching states (ON/OFF).