

The Electronics Salon MD-D262/12V is a Double Pole Double Throw (DPDT) latching relay designed for efficient and reliable switching in electronic circuits. This relay features two sets of contacts, enabling it to control two independent circuits simultaneously. Its latching mechanism allows the relay to maintain its state (ON or OFF) even after the control signal is removed, making it ideal for applications requiring persistent states without continuous power consumption.








| Parameter | Value |
|---|---|
| Manufacturer | Electronics Salon |
| Part Number | MD-D262/12V |
| Relay Type | DPDT (Double Pole Double Throw) |
| Coil Voltage | 12V DC |
| Coil Resistance | 400 Ω |
| Contact Rating | 10A @ 250V AC / 10A @ 30V DC |
| Contact Material | Silver Alloy |
| Switching Mechanism | Latching (Bistable) |
| Dimensions | 28mm x 12.5mm x 15mm |
| Operating Temperature | -40°C to +85°C |
| Mounting Type | PCB Mount |
The MD-D262/12V relay has a total of 8 pins. The pin configuration is as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal A (Set) |
| 2 | Coil Terminal B (Reset) |
| 3 | Common Terminal for Pole 1 |
| 4 | Normally Closed (NC) Contact for Pole 1 |
| 5 | Normally Open (NO) Contact for Pole 1 |
| 6 | Common Terminal for Pole 2 |
| 7 | Normally Closed (NC) Contact for Pole 2 |
| 8 | Normally Open (NO) Contact for Pole 2 |
Below is an example of how to control the MD-D262/12V relay using an Arduino UNO:
// Define the Arduino pins connected to the relay's coil terminals
const int setPin = 7; // Pin connected to Coil Terminal A (Set)
const int resetPin = 8; // Pin connected to Coil Terminal B (Reset)
void setup() {
// Set the relay control pins as outputs
pinMode(setPin, OUTPUT);
pinMode(resetPin, OUTPUT);
// Initialize the relay in the OFF state
digitalWrite(setPin, LOW);
digitalWrite(resetPin, LOW);
}
void loop() {
// Example: Turn the relay ON
digitalWrite(setPin, HIGH); // Send a pulse to the Set pin
delay(100); // Wait for 100ms
digitalWrite(setPin, LOW); // Turn off the Set pin
delay(5000); // Wait for 5 seconds
// Example: Turn the relay OFF
digitalWrite(resetPin, HIGH); // Send a pulse to the Reset pin
delay(100); // Wait for 100ms
digitalWrite(resetPin, LOW); // Turn off the Reset pin
delay(5000); // Wait for 5 seconds
}
setPin and resetPin with the actual pins connected to the relay in your circuit.Relay Does Not Switch
Relay Stays in One State
Voltage Spikes in the Circuit
Contacts Overheat or Fail
Q: Can I use this relay with a 5V control signal?
A: No, the MD-D262/12V requires a 12V DC control signal to operate. Use a transistor or relay driver circuit to step up the control voltage if needed.
Q: Does the relay consume power continuously?
A: No, the latching mechanism ensures the relay retains its state without continuous power to the coil.
Q: Can I use this relay for AC loads?
A: Yes, the relay supports AC loads up to 10A @ 250V AC. Ensure proper insulation and safety precautions when working with high voltages.
Q: How do I reset the relay to its default state?
A: Apply a momentary pulse to the Reset pin (Coil Terminal B) to switch the relay to its default state.
This concludes the documentation for the Electronics Salon MD-D262/12V DPDT Latching Relay.