

The Relay 5V 1 Channel is an electromechanical switch that operates at a 5V input signal, enabling the control of high-voltage devices using a low-voltage signal. This relay module is widely used in automation, home appliances, and DIY electronics projects. It is particularly suitable for applications requiring simple on/off control, such as controlling lights, fans, or other high-power devices.








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 |
| Relay Type | SPDT (Single Pole Double Throw) |
| Isolation | Optocoupler isolation for safety |
| Dimensions | ~50mm x 26mm x 18mm |
| Indicator LED | Yes (indicates relay activation) |
The Relay 5V 1 Channel module has the following pin configuration:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Connect to 5V DC power supply. |
| 2 | GND | Connect to ground. |
| 3 | IN | Control signal input. A HIGH signal activates the relay, and a LOW signal deactivates it. |
| Terminal | Name | Description |
|---|---|---|
| 1 | COM | Common terminal. Connect to the load or power source. |
| 2 | NO | Normally Open terminal. Connect to the load for default OFF state. |
| 3 | NC | Normally Closed terminal. Connect to the load for default ON state. |
Power the Relay Module:
VCC pin to a 5V DC power supply. GND pin to the ground of your circuit.Control Signal:
IN pin to a microcontroller (e.g., Arduino UNO) or any other control circuit. IN pin will activate the relay, switching the connected load.Connect the Load:
COM and NO. COM and NC.Safety Precautions:
Below is an example of how to control the Relay 5V 1 Channel using an Arduino UNO:
VCC pin to the Arduino's 5V pin.GND pin to the Arduino's GND pin.IN pin to Arduino digital pin 7.COM and NO terminals.// 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:
IN pin receives a signal between 3.3V and 5V.Load Not Switching:
COM, NO, or NC).Relay Stuck in ON/OFF State:
Indicator LED Not Lighting Up:
VCC and GND pins are properly connected to a 5V power source.Q: Can I use this relay with a 3.3V microcontroller?
A: Yes, the relay can be triggered with a 3.3V control signal, but ensure the VCC pin is powered with 5V.
Q: Is the relay safe for switching AC loads?
A: Yes, the relay is designed for AC loads up to 250V, but always follow safety precautions when working with high voltages.
Q: Can I control multiple relays with one Arduino?
A: Yes, you can control multiple relays by connecting each relay's IN pin to a separate digital pin on the Arduino.
Q: What happens if I exceed the relay's maximum ratings?
A: Exceeding the ratings can damage the relay and pose safety risks. Always stay within the specified limits.
This concludes the documentation for the Relay 5V 1 Channel. Follow the guidelines and best practices to ensure safe and effective operation!