

The LAMP - STOP INDICATOR (Model: XB4-BVM4), manufactured by Schneider, is a visual signaling device designed to illuminate and indicate a stop condition. It is widely used in industrial machinery, vehicles, and control panels to alert operators or drivers of a stop or emergency state. This robust and reliable component ensures clear visibility and enhances safety in various applications.








Below are the key technical details and pin configuration for the XB4-BVM4:
| Parameter | Specification |
|---|---|
| Manufacturer | Schneider |
| Part Number | XB4-BVM4 |
| Operating Voltage | 24V DC |
| Power Consumption | 1.2W |
| Illumination Type | LED |
| Color | Red |
| Mounting Type | Panel Mount |
| Operating Temperature | -25°C to +70°C |
| IP Rating | IP65 (Dust-tight and water-resistant) |
| Housing Material | Metal |
| Lens Material | Polycarbonate |
The XB4-BVM4 has a simple pin configuration for easy integration into circuits. Below is the pinout description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Positive (+) | Connect to the positive terminal of the power supply. |
| 2 | Negative (-) | Connect to the negative terminal (ground). |
The XB4-BVM4 can be controlled using an Arduino UNO for automation or testing purposes. Below is an example circuit and code:
// Example code to control the XB4-BVM4 Stop Indicator Lamp with Arduino UNO
const int lampPin = 9; // Pin connected to the Positive (+) terminal of the lamp
void setup() {
pinMode(lampPin, OUTPUT); // Set the lamp pin as an output
}
void loop() {
digitalWrite(lampPin, HIGH); // Turn the lamp ON
delay(1000); // Keep the lamp ON for 1 second
digitalWrite(lampPin, LOW); // Turn the lamp OFF
delay(1000); // Keep the lamp OFF for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Lamp does not illuminate | Incorrect wiring or loose connections | Verify wiring and ensure secure connections. |
| Lamp flickers or dims | Insufficient power supply | Check the power supply voltage and current rating. |
| Overheating | Operating outside temperature range | Ensure the environment is within -25°C to +70°C. |
| Water or dust ingress | Improper sealing or damaged housing | Verify proper mounting and inspect the IP65 seal. |
Can the lamp operate on AC power?
What is the lifespan of the LED?
Can the lamp be used outdoors?
What resistor value should I use with an Arduino?
By following this documentation, users can effectively integrate and maintain the XB4-BVM4 Stop Indicator Lamp in their applications.