









The Pilot Lamp Yellon typically has two terminals for connection:
| Pin Number | Label | Description |
|---|---|---|
| 1 | Positive (+) | Connect to the positive terminal of the power supply. |
| 2 | Negative (-) | Connect to the negative terminal (ground). |
Wiring the Pilot Lamp Yellon:
Mounting:
Important Considerations:
Example Circuit with Arduino UNO: The Pilot Lamp Yellon can be used with an Arduino UNO to indicate the status of a digital output pin. Below is an example:
// Example: Controlling a Pilot Lamp Yellon with Arduino UNO
// Connect the positive terminal of the lamp to pin 9 via a 330-ohm resistor.
// Connect the negative terminal of the lamp to the Arduino GND.
const int lampPin = 9; // Define the pin connected to 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); // Wait for 1 second
digitalWrite(lampPin, LOW); // Turn the lamp OFF
delay(1000); // Wait for 1 second
}
Lamp Does Not Light Up:
Lamp Flickers:
Lamp Overheats:
Short Circuit:
Q: Can the Pilot Lamp Yellon be used with AC power?
A: Yes, but ensure the lamp is rated for AC operation and matches the supply voltage.
Q: What resistor value should I use for a 12V DC supply?
A: For a 12V supply and a lamp rated at 20mA, use a resistor of approximately 330 ohms. Calculate the exact value using Ohm's Law: ( R = \frac{V}{I} ).
Q: Is the lamp waterproof?
A: The Pilot Lamp Yellon has an IP65 rating, making it resistant to dust and water splashes. However, it is not suitable for full submersion.
Q: Can I replace the bulb inside the lamp?
A: Most Pilot Lamp Yellon models use non-replaceable LEDs. If the lamp fails, the entire unit must be replaced.
By following this documentation, you can effectively integrate the Pilot Lamp Yellon into your projects and troubleshoot common issues with ease.