A pilot lamp is an indicator light that shows the status of an electrical circuit or device. The red color typically indicates a warning or that the device is in an active state. Pilot lamps are essential components in various applications, providing visual feedback to users about the operational status of equipment.
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Current Rating | 20mA |
Power Consumption | 0.24W |
Light Color | Red |
Mounting Hole Size | 8mm |
Lifespan | 50,000 hours |
Operating Temperature Range | -20°C to 70°C |
Pin Number | Description |
---|---|
1 | Positive Terminal (+) |
2 | Negative Terminal (-) |
To use the pilot lamp with an Arduino UNO, you can connect it to a digital output pin. Below is an example code to turn the pilot lamp on and off.
// Define the pin connected to the pilot lamp
const int pilotLampPin = 13;
void setup() {
// Initialize the digital pin as an output
pinMode(pilotLampPin, OUTPUT);
}
void loop() {
// Turn the pilot lamp on
digitalWrite(pilotLampPin, HIGH);
delay(1000); // Wait for 1 second
// Turn the pilot lamp off
digitalWrite(pilotLampPin, LOW);
delay(1000); // Wait for 1 second
}
Pilot Lamp Not Lighting Up:
Dim Light Output:
Flickering Light:
Q1: Can I use the pilot lamp with a different voltage?
Q2: How do I mount the pilot lamp securely?
Q3: What is the lifespan of the pilot lamp?
Q4: Can I use the pilot lamp outdoors?
By following this documentation, users can effectively integrate and troubleshoot the Pilot Lamp Red in their projects, ensuring reliable and clear status indication.