A DPDT (Double-Pole, Double-Throw) Relay is an electromagnetic device designed to control two independent circuits simultaneously, allowing each to be connected to one of two terminals. This relay is commonly used in applications where switching between two power sources or controlling multiple outputs from a single signal is required. Its versatility makes it suitable for a variety of applications, including motor control, signal switching, and power supply management.
Pin Number | Description | Notes |
---|---|---|
1 | Coil End 1 | Connect to DC voltage supply |
2 | Coil End 2 | Connect to ground |
3 | Common Pole 1 | Switchable pole for circuit 1 |
4 | Normally Closed (NC) 1 | Default connection for circuit 1 |
5 | Normally Open (NO) 1 | Activated connection for circuit 1 |
6 | Common Pole 2 | Switchable pole for circuit 2 |
7 | Normally Closed (NC) 2 | Default connection for circuit 2 |
8 | Normally Open (NO) 2 | Activated connection for circuit 2 |
// Example code to control a DPDT relay with an Arduino UNO
const int relayPin = 2; // Relay control pin
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
}
void loop() {
digitalWrite(relayPin, HIGH); // Activate the relay
delay(1000); // Wait for 1 second
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(1000); // Wait for 1 second
}
Q: Can I use a DPDT relay to switch AC loads? A: Yes, ensure the contact ratings match the requirements of your AC load.
Q: How can I protect the relay from voltage spikes? A: Use a flyback diode across the coil terminals to absorb voltage spikes when the coil is turned off.
Q: Can I control a DPDT relay with a microcontroller? A: Yes, you can control it using a digital output pin, but ensure you have a suitable driver if the coil voltage exceeds the microcontroller's voltage levels.
For further assistance, consult the manufacturer's datasheet specific to the part ID 'dpdt' and contact technical support if necessary.