

A relay is an electromechanical switch that uses an electromagnetic coil to open or close contacts, enabling control of a high-power circuit with a low-power signal. This package includes two relays, making it ideal for projects requiring multiple switching mechanisms. Relays are widely used in automation, home appliances, automotive systems, and industrial control applications.








Below are the key technical details for the relays included in this package:
Each relay has 5 pins, as described in the table below:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the electromagnetic coil (connect to 5V DC). |
| 2 | Coil (-) | Negative terminal of the electromagnetic coil (connect to ground). |
| 3 | Common (COM) | Common terminal for the switching mechanism. |
| 4 | Normally Open (NO) | Open circuit when the relay is inactive; closes when the relay is activated. |
| 5 | Normally Closed (NC) | Closed circuit when the relay is inactive; opens when the relay is activated. |
Below is an example of how to control a relay using an Arduino UNO:
// Define the relay 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 at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Activate the relay
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(1000); // Keep the relay off for 1 second
}
Relay Not Activating:
Relay Stuck in One State:
Voltage Spikes Damaging the Circuit:
Excessive Heat:
Q: Can I use this relay with a 3.3V microcontroller?
A: Yes, but you will need a transistor or relay driver circuit to step up the control voltage to 5V.
Q: Can this relay switch DC motors?
A: Yes, but ensure the motor's current and voltage are within the relay's ratings. Use a snubber circuit to suppress voltage spikes.
Q: How do I know if the relay is working?
A: You should hear a clicking sound when the relay switches. You can also measure continuity between the COM and NO/NC pins.
By following this documentation, you can effectively use the Relay 2pcs in your projects for reliable and efficient switching.