The 1 Channel 5V Relay Module is an electronic component designed to allow a low-voltage control signal (e.g., from a microcontroller) to switch a higher voltage circuit. This module is widely used in applications where electrical isolation and control of high-power devices are required. It is ideal for controlling devices such as lights, fans, motors, and other appliances.
The following are the key technical details of the 1 Channel 5V Relay Module:
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 |
Indicator LED | Yes (lights up when the relay is active) |
The module has a total of 6 pins and terminals, as described below:
Pin Name | Description |
---|---|
VCC | Connect to 5V DC power supply |
GND | Ground connection |
IN | Control signal input (3.3V or 5V logic level) |
Terminal Name | Description |
---|---|
COM | Common terminal for the relay switch |
NO | Normally Open terminal (connected to COM when |
the relay is activated) | |
NC | Normally Closed terminal (connected to COM |
when the relay is not activated) |
Below is an example of how to use the 1 Channel 5V Relay Module with an Arduino UNO to control a light bulb.
// 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 (light bulb ON)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the light on for 5 seconds
// Turn the relay off (light bulb OFF)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the light off for 5 seconds
}
Relay Not Activating:
Load Not Switching:
Relay Clicking but No Output:
Indicator LED Not Lighting Up:
Q1: Can I use this relay module with a 3.3V microcontroller like the ESP8266?
A1: Yes, the relay module can be triggered with a 3.3V control signal. Ensure the VCC pin is still powered with 5V.
Q2: Can I control DC devices with this relay?
A2: Yes, the relay can switch DC devices as long as the voltage does not exceed 30V and the current does not exceed 10A.
Q3: Is the relay module safe for switching high-power AC devices?
A3: Yes, but ensure proper insulation and follow safety guidelines when working with high-voltage circuits.