

The D31A Series Reed Relay by Celduc is an electromagnetic switch designed for low-power switching applications. It operates by using a magnetic field to control a pair of contacts, enabling or disabling the flow of current in a circuit. Known for its fast response time, high reliability, and compact design, the D31A Series is ideal for applications requiring precise and efficient switching.








The following table outlines the key technical details of the D31A Series Reed Relay:
| Parameter | Value |
|---|---|
| Contact Configuration | SPST (Single Pole Single Throw) |
| Coil Voltage Range | 5V, 12V, 24V |
| Contact Rating | 10W (max) |
| Switching Voltage (max) | 200V DC |
| Switching Current (max) | 0.5A |
| Operate Time | 0.5 ms (typical) |
| Release Time | 0.1 ms (typical) |
| Insulation Resistance | ≥10⁹ Ω |
| Operating Temperature | -40°C to +85°C |
| Dimensions | Compact, varies by model |
The D31A Series Reed Relay typically has four pins. The pin configuration is as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 3 | Common Contact (Switch Input) |
| 4 | Normally Open Contact (Switch Output) |
Note: Always refer to the specific datasheet for your D31A model to confirm pinout details.
Below is an example of how to control the D31A Series Reed Relay using an Arduino UNO:
// Example: Controlling a D31A Series Reed Relay with Arduino UNO
const int relayPin = 7; // Pin connected to the relay coil (via a transistor)
void setup() {
pinMode(relayPin, OUTPUT); // Set relayPin as an output
}
void loop() {
digitalWrite(relayPin, HIGH); // Energize the relay coil
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // De-energize the relay coil
delay(1000); // Keep the relay off for 1 second
}
Note: Use a transistor (e.g., 2N2222) to drive the relay coil, as the Arduino's GPIO pins cannot supply sufficient current directly. Place a flyback diode (e.g., 1N4007) across the relay coil to protect the circuit.
Relay Not Switching
Contacts Sticking
Noise or Interference
Overheating
Q: Can the D31A Series Reed Relay switch AC loads?
A: Yes, it can switch low-power AC loads, but ensure the voltage and current are within the relay's rated specifications.
Q: What is the advantage of using a reed relay over a solid-state relay?
A: Reed relays offer faster switching times, lower power consumption, and better isolation for low-power applications.
Q: How do I determine the correct coil voltage for my application?
A: Check the relay's model number and datasheet to identify the coil voltage (e.g., 5V, 12V, or 24V). Match this with your control circuit's voltage supply.
Q: Can I use the D31A Series Reed Relay in high-frequency applications?
A: Yes, reed relays are suitable for high-frequency signal switching due to their low capacitance and fast response time.
By following this documentation, you can effectively integrate the D31A Series Reed Relay into your projects for reliable and efficient switching.