

The Schneider 12V Intermediate Relay (RXM2LB2BD) is a versatile electromechanical relay designed to control high-power devices using a low-power 12V DC signal. It features a compact design, multiple switching contacts, and high reliability, making it ideal for use in automation, industrial control systems, and other applications requiring electrical isolation and signal amplification.








| Parameter | Value |
|---|---|
| Manufacturer | Schneider |
| Part Number | RXM2LB2BD |
| Coil Voltage | 12V DC |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 10A at 250V AC / 30V DC |
| Coil Resistance | ~160 Ohms |
| Operating Temperature | -40°C to +70°C |
| Mounting Type | Plug-in (DIN rail or PCB socket) |
| Dimensions | 27mm x 21mm x 35mm |
| Insulation Resistance | ≥1000 MΩ at 500V DC |
| Dielectric Strength | 2000V AC (coil to contact) |
The RXM2LB2BD relay has a standard 8-pin configuration. Below is the pinout description:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 3 | Common Terminal for Contact Set 1 |
| 4 | Normally Closed (NC) Contact Set 1 |
| 5 | Normally Open (NO) Contact Set 1 |
| 6 | Common Terminal for Contact Set 2 |
| 7 | Normally Closed (NC) Contact Set 2 |
| 8 | Normally Open (NO) Contact Set 2 |
The RXM2LB2BD relay can be controlled using an Arduino UNO. Below is an example circuit and code to toggle the relay:
// Define the relay control pin
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 Activating
Contacts Not Switching
Voltage Spikes Damaging the Circuit
Overheating
Q1: Can this relay be used with AC loads?
Yes, the RXM2LB2BD relay can switch AC loads up to 250V, provided the current does not exceed 10A.
Q2: Is the relay suitable for high-frequency switching?
No, electromechanical relays like the RXM2LB2BD are not ideal for high-frequency switching due to mechanical wear and slower response times.
Q3: Can I use this relay with a 5V control signal?
No, the RXM2LB2BD requires a 12V DC signal to activate the coil. You can use a transistor or a relay driver circuit to interface it with a 5V control signal.
Q4: How do I test if the relay is working?
Apply 12V DC to the coil terminals and listen for a clicking sound. You can also use a multimeter to check the continuity between the COM and NO/NC terminals.
This concludes the documentation for the Schneider 12V Intermediate Relay (RXM2LB2BD).