









| Parameter | Value/Range |
|---|---|
| Operating Voltage | 5V, 12V, or 24V (depending on model) |
| Coil Resistance | Typically 70Ω to 400Ω |
| Switching Voltage | Up to 250V AC or 30V DC |
| Switching Current | Up to 10A |
| Contact Configuration | SPDT (Single Pole Double Throw) or DPDT (Double Pole Double Throw) |
| Isolation | Electrical isolation between control and load circuits |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Coil+ (VCC) | Positive terminal of the relay coil |
| 2 | Coil- (GND) | Negative terminal of the relay coil |
| 3 | Common (COM) | Common terminal for the load circuit |
| 4 | Normally Open (NO) | Open circuit when the relay is inactive; closes when activated |
| 5 | Normally Closed (NC) | Closed circuit when the relay is inactive; opens when activated |
Connecting the Relay to a Circuit:
Important Considerations:
Using a Relay with Arduino UNO: Below is an example of how to control a relay using an Arduino UNO:
// Example: Controlling a relay with Arduino UNO
const int relayPin = 7; // Pin connected to the relay module
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); // Turn the relay on
delay(1000); // Keep it on for 1 second
digitalWrite(relayPin, LOW); // Turn the relay off
delay(1000); // Keep it off for 1 second
}
Relay not activating:
Load not switching:
Arduino resets when activating the relay:
Relay makes a buzzing sound:
Q: Can I use a relay to control an AC appliance?
Q: Do I need a separate power supply for the relay?
Q: What is the purpose of the flyback diode?
Q: Can I use a relay to switch both AC and DC loads?