The 1 Channel Relay 5V module is an essential component in electronics, allowing a low-power 5V signal to control a higher power circuit. This relay module is commonly used for switching devices on and off, making it ideal for home automation, industrial control, and various DIY projects. It acts as an interface between microcontrollers (like Arduino) and high-power devices, ensuring safe and efficient control.
Parameter | Value |
---|---|
Operating Voltage | 5V DC |
Trigger Voltage | 0-5V DC |
Current Rating | 10A @ 250V AC / 10A @ 30V DC |
Relay Type | SPDT (Single Pole Double Throw) |
Dimensions | 50mm x 26mm x 18.5mm |
Weight | 20g |
Pin Name | Description |
---|---|
VCC | Connects to the 5V power supply. |
GND | Connects to the ground of the power supply. |
IN | Control signal pin. Connects to the digital output pin of a microcontroller. |
COM | Common terminal of the relay switch. |
NO | Normally Open terminal. Connects to the load when the relay is activated. |
NC | Normally Closed terminal. Connects to the load when the relay is not activated. |
Power Connections:
Control Signal:
Load Connections:
/*
* Example code to control a 1 Channel Relay 5V module using Arduino UNO.
* This code turns the relay on for 2 seconds and then off for 2 seconds
* in a loop.
*/
const int relayPin = 7; // Define the pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(2000); // Wait for 2 seconds
digitalWrite(relayPin, LOW); // Turn the relay off
delay(2000); // Wait for 2 seconds
}
Relay Not Activating:
Relay Stuck in One State:
Overheating:
Q1: Can I use the relay module with a 3.3V microcontroller?
Q2: Can I control AC devices with this relay module?
Q3: What is the difference between NO and NC terminals?
By following this documentation, users can effectively integrate the 1 Channel Relay 5V module into their projects, ensuring safe and efficient control of high-power devices.