

The 1 Channel Relay 5V is an electromechanical switch 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. It is ideal for switching devices such as lights, fans, motors, or other high-power loads while isolating the control circuit from the high-power circuit.








| Pin Name | Description |
|---|---|
| VCC | Connect to 5V power supply (positive terminal). |
| GND | Connect to ground (negative terminal). |
| IN | Control signal input. A HIGH signal activates the relay, and a LOW signal deactivates it. |
| Pin Name | Description |
|---|---|
| COM | Common terminal for the load circuit. |
| NO | Normally Open terminal. Connect the load here if you want it to be OFF by default. |
| NC | Normally Closed terminal. Connect the load here if you want it to be ON by default. |
Below is an example of how to control the relay module using an Arduino UNO:
// Define the pin connected to the relay module
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 (activates the connected load)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF (deactivates the connected load)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
relayPin with the actual pin number connected to the IN pin of the relay module.Relay Not Activating:
Load Not Switching:
Microcontroller Resetting When Relay Activates:
LED Indicator Not Lighting Up:
Q1: Can I use the relay module with a 3.3V microcontroller?
A1: Yes, the relay module can be triggered with a 3.3V control signal, but ensure the VCC pin is still powered with 5V.
Q2: Is the relay module safe for high-power loads?
A2: Yes, as long as the load does not exceed the rated capacity (250V AC at 10A or 30V DC at 10A). Always follow safety precautions when working with high voltages.
Q3: Can I control multiple relays with one microcontroller?
A3: Yes, you can control multiple relay modules by connecting each IN pin to a separate digital output pin on the microcontroller.
Q4: Why is the relay clicking but not switching the load?
A4: This could be due to incorrect wiring on the load side. Double-check the connections to the COM, NO, and NC terminals.
By following this documentation, you can effectively use the 1 Channel Relay 5V module in your projects for safe and reliable control of high-power devices.