Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Pilot Lamp Yellon: Examples, Pinouts, and Specs

Image of Pilot Lamp Yellon
Cirkit Designer LogoDesign with Pilot Lamp Yellon in Cirkit Designer

Introduction

  • The Pilot Lamp Yellon is a small indicator light designed to visually display the operational status of a device or circuit. It emits a yellow light, which is commonly associated with caution or warning conditions.
  • This component is widely used in control panels, industrial equipment, and consumer electronics to provide a clear and immediate visual indication of system states such as power-on, fault conditions, or standby modes.

Explore Projects Built with Pilot Lamp Yellon

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered Green Pilot Lamp with Rocker Switch Control
Image of simple: A project utilizing Pilot Lamp Yellon in a practical application
This circuit consists of a battery connected to a green pilot lamp through a rocker switch. The rocker switch controls the power flow from the battery to the lamp; when the switch is in the 'on' position, the circuit is completed, and the lamp is illuminated, indicating power is being supplied.
Cirkit Designer LogoOpen Project in Cirkit Designer
USB-Powered Light Sensor with Pilot Lamp Indicator
Image of Eierfärbermaschine: A project utilizing Pilot Lamp Yellon in a practical application
This circuit powers a blue pilot lamp using a USB power source. The positive terminal of the USB power is connected to one pin of the pilot lamp, while the negative terminal is connected to the other pin, allowing the lamp to illuminate when the USB power is supplied.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Green Pilot Lamp with Push Switch Control
Image of lora project: A project utilizing Pilot Lamp Yellon in a practical application
This circuit is a simple control circuit that uses a 2-pin push switch to turn on a green pilot lamp. When the switch is pressed, it completes the circuit between the battery and the lamp, allowing current to flow and illuminate the lamp. The circuit is likely used as an indicator light that can be manually toggled on and off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO Controlled Relay System for Lamp Automation
Image of Trial: A project utilizing Pilot Lamp Yellon in a practical application
This circuit uses an Arduino UNO to control a 1-Channel Relay, which switches between a red lamp and a green pilot lamp. The relay is powered by a 12V battery, and the Arduino toggles the relay to alternate the illumination of the red and green lamps every second.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Pilot Lamp Yellon

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of simple: A project utilizing Pilot Lamp Yellon in a practical application
Battery-Powered Green Pilot Lamp with Rocker Switch Control
This circuit consists of a battery connected to a green pilot lamp through a rocker switch. The rocker switch controls the power flow from the battery to the lamp; when the switch is in the 'on' position, the circuit is completed, and the lamp is illuminated, indicating power is being supplied.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Eierfärbermaschine: A project utilizing Pilot Lamp Yellon in a practical application
USB-Powered Light Sensor with Pilot Lamp Indicator
This circuit powers a blue pilot lamp using a USB power source. The positive terminal of the USB power is connected to one pin of the pilot lamp, while the negative terminal is connected to the other pin, allowing the lamp to illuminate when the USB power is supplied.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of lora project: A project utilizing Pilot Lamp Yellon in a practical application
Battery-Powered Green Pilot Lamp with Push Switch Control
This circuit is a simple control circuit that uses a 2-pin push switch to turn on a green pilot lamp. When the switch is pressed, it completes the circuit between the battery and the lamp, allowing current to flow and illuminate the lamp. The circuit is likely used as an indicator light that can be manually toggled on and off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Trial: A project utilizing Pilot Lamp Yellon in a practical application
Arduino UNO Controlled Relay System for Lamp Automation
This circuit uses an Arduino UNO to control a 1-Channel Relay, which switches between a red lamp and a green pilot lamp. The relay is powered by a 12V battery, and the Arduino toggles the relay to alternate the illumination of the red and green lamps every second.
Cirkit Designer LogoOpen Project in Cirkit Designer

Technical Specifications

  • Operating Voltage: 12V DC (typical), available in other voltage ratings (e.g., 24V, 110V AC/DC)
  • Current Consumption: 10-20 mA (depending on voltage rating)
  • Light Color: Yellow
  • Mounting Type: Panel mount with threaded body
  • Body Material: Plastic or metal (varies by model)
  • Lens Material: Polycarbonate (yellow-tinted)
  • Lifespan: Approximately 30,000 hours
  • Operating Temperature: -20°C to +70°C
  • Ingress Protection: IP65 (dust-tight and water-resistant)

Pin Configuration and Descriptions

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).

Usage Instructions

  1. Wiring the Pilot Lamp Yellon:

    • Identify the positive (+) and negative (-) terminals on the lamp.
    • Connect the positive terminal to the positive output of your power source or circuit.
    • Connect the negative terminal to the ground or negative output of your power source.
    • Ensure the voltage rating of the lamp matches the supply voltage to avoid damage.
  2. Mounting:

    • Drill a hole in the panel or enclosure where the lamp will be installed. The hole diameter should match the lamp's threaded body size (e.g., 16mm or 22mm).
    • Insert the lamp into the hole and secure it using the provided nut.
  3. Important Considerations:

    • Always verify the voltage and current ratings before connecting the lamp to a circuit.
    • Use appropriate resistors or current-limiting devices if the lamp is connected to a higher voltage source.
    • Ensure proper insulation and strain relief for the wiring to prevent accidental short circuits.
  4. 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
    }
    
    • Note: The resistor value (330 ohms) is chosen to limit the current through the lamp. Adjust the resistor value based on the lamp's voltage and current ratings.

Troubleshooting and FAQs

Common Issues

  1. Lamp Does Not Light Up:

    • Cause: Incorrect wiring or insufficient voltage.
    • Solution: Double-check the wiring and ensure the power supply matches the lamp's voltage rating.
  2. Lamp Flickers:

    • Cause: Unstable power supply or loose connections.
    • Solution: Verify the power source and ensure all connections are secure.
  3. Lamp Overheats:

    • Cause: Excessive current or incorrect voltage.
    • Solution: Use a current-limiting resistor or ensure the supply voltage matches the lamp's rating.
  4. Short Circuit:

    • Cause: Exposed wires or incorrect polarity.
    • Solution: Inspect the wiring for damage and ensure proper polarity.

FAQs

  • 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.