

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 relay module is widely used in automation, home appliances, and industrial control systems. It is ideal for switching devices such as lights, fans, motors, and other high-power loads.








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 signal input |
| Dimensions | ~50mm x 26mm x 18mm |
| Weight | ~15g |
The 1 Channel Relay 5V module has the following pins and terminals:
| Pin Name | Description |
|---|---|
| VCC | Connect to 5V DC power supply. |
| GND | Connect to ground (0V). |
| IN | Control signal input. A HIGH signal activates the relay, and a LOW signal |
| deactivates it. |
| Terminal Name | Description |
|---|---|
| COM | Common terminal. Connect to one side of the load. |
| NO | Normally Open terminal. Connect to the other side of the load if you |
| want the circuit to close when the relay is activated. | |
| NC | Normally Closed terminal. Connect to the other side of the load if |
| you want the circuit to open when the relay is activated. |
Below is an example of how to 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 Clicking Continuously:
Burnt Smell or Overheating:
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 isolation and safety precautions must be followed.
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: Why is the relay making a buzzing noise?
A: This could be due to insufficient power supply or an unstable control signal. Verify the power source and signal integrity.