

The Pilot Lamp Yellon is a small indicator light designed to signal the operational status of a device or system. It is commonly used in control panels, industrial equipment, and machinery to provide visual feedback to operators. The yellow light emitted by the Yellon variant is typically associated with caution or warning, making it ideal for applications where attention is required.








| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC (common variant) |
| Current Consumption | 20mA |
| Light Color | Yellow |
| Mounting Hole Diameter | 22mm |
| Lamp Type | LED-based |
| Lifespan | 30,000 hours (typical) |
| Operating Temperature | -20°C to 70°C |
| Housing Material | Polycarbonate (flame-retardant) |
| Pin Number | Label | Description |
|---|---|---|
| 1 | Positive (+) | Connect to the positive terminal of the power supply. |
| 2 | Negative (-) | Connect to the negative terminal (ground). |
Positive (+) pin.Negative (-) pin.The Pilot Lamp Yellon can be used with an Arduino UNO to indicate the status of a process. Below is an example code snippet:
// Define the pin connected to the Pilot Lamp Yellon
const int pilotLampPin = 13;
void setup() {
// Set the pilot lamp pin as an output
pinMode(pilotLampPin, OUTPUT);
}
void loop() {
// Turn the pilot lamp ON
digitalWrite(pilotLampPin, HIGH);
delay(1000); // Keep it ON for 1 second
// Turn the pilot lamp OFF
digitalWrite(pilotLampPin, LOW);
delay(1000); // Keep it OFF for 1 second
}
Note: Use a current-limiting resistor (e.g., 470Ω) between the Arduino pin and the lamp to protect the microcontroller.
Lamp Does Not Light Up:
Lamp Flickers:
Lamp Overheats:
Short Lifespan:
Q: Can the Pilot Lamp Yellon be used with AC power?
A: No, this variant is designed for DC power only. Use a compatible AC-to-DC converter if needed.
Q: Is the lamp waterproof?
A: The standard model is not waterproof. For outdoor or wet environments, use a waterproof variant.
Q: Can I replace the LED inside the lamp?
A: The LED is typically not replaceable. If the lamp fails, replace the entire unit.
Q: What resistor value should I use with an Arduino?
A: A 470Ω resistor is recommended to limit the current and protect the Arduino pin.
This concludes the documentation for the Pilot Lamp Yellon. Follow the guidelines above for safe and effective use of this component.