

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 relay is commonly used in automation, home appliances, and industrial control systems to isolate and control high-power devices such as lights, motors, and heaters. It operates at 5V DC, making it compatible with most microcontrollers, including Arduino and Raspberry Pi.








Below are the key technical details of the 1 Channel Relay 5V:
| Parameter | Value |
|---|---|
| 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 |
| Dimensions | ~50mm x 26mm x 18mm |
The 1 Channel Relay module typically has 6 pins or terminals, as described below:
| Pin Name | Description |
|---|---|
| VCC | Connect to 5V DC power supply |
| GND | Connect to ground |
| IN | Control signal input (3.3V or 5V logic level) |
| 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 control the 1 Channel Relay using an Arduino UNO:
// Define the pin connected to the relay module
const int relayPin = 7; // Connect the IN pin of the relay to digital pin 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() {
// Turn the relay ON
digitalWrite(relayPin, HIGH); // Send a HIGH signal to activate the relay
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF
digitalWrite(relayPin, LOW); // Send a LOW signal to deactivate the relay
delay(5000); // Keep the relay OFF for 5 seconds
}
Relay Not Activating
Load Not Switching
Microcontroller Resets When Relay Activates
Relay Stuck in One State
Q: Can I use the relay with a 3.3V microcontroller like ESP8266 or Raspberry Pi?
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 appliances?
A: Yes, the relay is designed for AC loads up to 250V, but always follow proper safety precautions when working with high voltage.
Q: Can I control multiple relays with one microcontroller?
A: Yes, you can control multiple relays by connecting each relay's IN pin to a separate digital output pin on the microcontroller.
Q: What is the lifespan of the relay?
A: The relay typically has a mechanical lifespan of over 100,000 operations, depending on the load and usage conditions.