

The Relay 5V 1 Channel module is an electronic component designed to control high-voltage devices using low-voltage signals. It operates at 5 volts and features a single channel for switching, making it ideal for simple on/off control applications. This module is commonly used in home automation, industrial control systems, and DIY electronics projects to safely interface low-power microcontrollers with high-power devices such as lights, fans, or motors.








Below are the key technical details and pin configuration for 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 |
| Relay Type | SPDT (Single Pole Double Throw) |
| Isolation Method | Optocoupler |
| Dimensions | ~50mm x 26mm x 18mm |
| Indicator LED | Yes (indicates relay status) |
| Pin Name | Description |
|---|---|
| VCC | Connect to the 5V power supply (positive terminal). |
| GND | Connect to the ground (negative terminal) of the power supply. |
| IN | Signal pin to control the relay (HIGH to activate, LOW to deactivate). |
| COM | Common terminal for the relay switch. |
| NO | Normally Open terminal (connected to COM when the relay is activated). |
| NC | Normally Closed terminal (connected to COM when the relay is deactivated). |
Below is an example of how to use the Relay 5V 1 Channel module with an Arduino UNO to control a light bulb.
// Define the relay control pin
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on (light bulb ON)
delay(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, LOW); // Turn the relay off (light bulb OFF)
delay(5000); // Keep the relay off for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Relay does not activate | Insufficient control signal voltage | Ensure the IN pin receives 3.3V to 5V. |
| Relay activates but load does not | Incorrect load wiring | Verify connections to COM, NO, and NC. |
| Module overheats | Exceeding load current rating | Ensure the load does not exceed 10A. |
| Indicator LED does not light up | No power to the module | Check VCC and GND connections. |
Can I use this relay with a 3.3V microcontroller?
Is the relay safe for switching AC devices?
Can I control multiple relays with one Arduino?
What happens if I exceed the relay's load ratings?
By following this documentation, you can safely and effectively use the Relay 5V 1 Channel module in your projects.