

A Double Pole Double Throw (DPDT) relay base layout is a configuration used to connect a DPDT relay to a circuit. This layout facilitates the control of two independent circuits using a single relay, making it highly versatile for switching applications. DPDT relays are commonly used in automation, motor control, and signal routing, where precise control of multiple circuits is required.








The DPDT relay base layout typically consists of 8 pins. Below is the pin configuration:
| Pin Number | Description | Functionality |
|---|---|---|
| 1 | Coil Terminal 1 | Connects to one side of the relay coil |
| 2 | Coil Terminal 2 | Connects to the other side of the relay coil |
| 3 | Common Terminal for Pole 1 (COM1) | Input for the first circuit |
| 4 | Normally Closed for Pole 1 (NC1) | Closed connection when the relay is OFF |
| 5 | Normally Open for Pole 1 (NO1) | Open connection when the relay is OFF |
| 6 | Common Terminal for Pole 2 (COM2) | Input for the second circuit |
| 7 | Normally Closed for Pole 2 (NC2) | Closed connection when the relay is OFF |
| 8 | Normally Open for Pole 2 (NO2) | Open connection when the relay is OFF |
Below is an example of how to control a DPDT relay using an Arduino UNO:
// Define the pin connected to the relay module
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Turn the relay ON
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the relay ON for 1 second
// Turn the relay OFF
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay OFF for 1 second
}
Relay Not Switching:
Chattering or Unstable Operation:
Load Not Switching:
Overheating:
Q1: Can I use a DPDT relay for AC and DC loads?
A1: Yes, DPDT relays can switch both AC and DC loads, but ensure the relay's voltage and current ratings are suitable for the specific load.
Q2: What is the purpose of the flyback diode?
A2: The flyback diode protects the control circuit from voltage spikes generated when the relay coil is de-energized.
Q3: Can I control a DPDT relay directly with a microcontroller?
A3: Yes, but ensure the microcontroller can supply enough current to the relay coil. If not, use a transistor or relay driver circuit.
Q4: How do I reverse a motor's direction using a DPDT relay?
A4: Connect the motor's terminals to the NO and NC contacts of one pole, and use the relay to swap the polarity of the motor's power supply.
This concludes the documentation for the DPDT Relay Base Layout.