

The 1 Channel Relay 5V is an electromechanical switching device 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 industrial control systems to safely isolate and switch high-power devices such as lights, motors, and heaters.








The following table outlines the key technical details of the 1 Channel Relay 5V 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 | Optocoupler isolation for safety |
| Dimensions | ~50mm x 26mm x 18mm |
| Indicator LED | Yes (indicates relay activation) |
The 1 Channel Relay 5V module has the following pinout:
| Pin Name | Description |
|---|---|
| VCC | Connect to 5V DC power supply |
| GND | Connect to ground |
| IN | Control signal input (HIGH to activate relay) |
| Terminal Name | Description |
|---|---|
| COM | Common terminal for the load |
| NO | Normally Open terminal (connected to COM |
| when relay is activated) | |
| NC | Normally Closed terminal (connected to COM |
| when relay is deactivated) |
Below is an example of how to connect and control the 1 Channel Relay 5V module using an Arduino UNO:
// Example code to control a 1 Channel Relay 5V module with Arduino UNO
#define RELAY_PIN 7 // Define the digital pin connected to the relay module
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
digitalWrite(RELAY_PIN, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(1000); // Keep the relay ON for 1 second
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(1000); // Keep the relay OFF for 1 second
}
Relay Not Activating:
Load Not Switching:
Indicator LED Not Lighting Up:
Q: Can I use this relay module with a 3.3V microcontroller?
A: Yes, the relay module can be triggered with a 3.3V control signal. However, ensure the VCC pin is still powered with 5V.
Q: Is the relay safe for switching high voltage AC loads?
A: Yes, the relay is designed for high voltage AC loads up to 250V. However, always follow proper safety precautions when working with high voltage.
Q: Can I control multiple relays with one Arduino?
A: Yes, you can control multiple relay modules by connecting each module's IN pin to a separate digital output pin on the Arduino.
Q: Why is the relay clicking but not switching the load?
A: This could be due to incorrect wiring on the high voltage side or a load that exceeds the relay's rated capacity. Double-check the connections and load specifications.
By following this documentation, you can effectively use the 1 Channel Relay 5V module in your projects for safe and reliable switching of high voltage circuits.