

A relay_5V is an electromechanical switch that operates at 5 volts. It allows a low-power control signal to manage a high-power circuit, providing electrical isolation between the control side (low voltage) and the load side (high voltage). This makes it an essential component in applications where electrical isolation and control of high-power devices are required.








Below are the key technical details and pin configuration for the relay_5V:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Trigger Voltage | 3.3V to 5V DC |
| Maximum Switching Voltage | 250V AC / 30V DC |
| Maximum Switching Current | 10A |
| Coil Resistance | ~70Ω |
| Electrical Isolation | Yes (via electromagnetic coil) |
| Contact Type | SPDT (Single Pole Double Throw) |
| Dimensions | ~19mm x 15mm x 15mm |
| Pin Name | Description |
|---|---|
| VCC | Connect to the 5V power supply (positive terminal). |
| GND | Connect to the ground (negative terminal). |
| IN | Control signal input (3.3V to 5V logic level). |
| COM | Common terminal for the load circuit. |
| NO (Normally Open) | Load terminal that remains disconnected until the relay is activated. |
| NC (Normally Closed) | Load terminal that remains connected until the relay is activated. |
Below is an example of how to control a relay_5V using an Arduino UNO:
// Define the pin connected to the relay's IN pin
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Activate the relay
delay(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(5000); // Keep the relay off for 5 seconds
}
Note: Ensure the relay module is connected to the Arduino's 5V and GND pins, and the IN pin is connected to pin 7.
Relay Not Activating:
Load Not Switching:
Voltage Spikes Damaging Components:
Relay Stuck in One State:
Q1: Can I use the relay_5V with a 3.3V microcontroller?
A1: Yes, the relay_5V can be triggered with a 3.3V control signal, but ensure the microcontroller can supply sufficient current to the IN pin.
Q2: Can I control an AC load with this relay?
A2: Yes, the relay_5V can switch AC loads up to 250V, provided the current does not exceed 10A.
Q3: Why is my relay making a clicking sound?
A3: The clicking sound is normal and indicates the relay is switching states. If the sound persists rapidly, check for issues in the control signal.
Q4: Do I need a transistor to drive the relay?
A4: If your control circuit cannot supply sufficient current to the relay's IN pin, use a transistor (e.g., 2N2222) as a driver.
By following this documentation, you can effectively integrate the relay_5V into your projects and troubleshoot common issues.