

The Pilot Lamp Green is a small indicator lamp that illuminates when electricity flows through it. It is commonly used to visually indicate the operational status of a circuit or device. These lamps are often found on control panels, dashboards, and electronic devices to signal power on, system status, or to alert users to specific conditions.








| Pin Number | Description |
|---|---|
| 1 | Live (Phase) Input |
| 2 | Neutral Return |
Q: Can I use the Pilot Lamp Green with a DC power supply? A: Pilot lamps are typically designed for AC use. Check the manufacturer's specifications for DC compatibility.
Q: Is it necessary to use a resistor with the Pilot Lamp Green? A: No, if the lamp is rated for the circuit's voltage, an additional resistor is not required.
Q: How do I know if the Pilot Lamp Green is compatible with my system? A: Check the voltage and current ratings of the lamp against your system's specifications.
// Define the Arduino pin connected to the lamp
const int pilotLampPin = 13; // Using the onboard LED for demonstration
void setup() {
pinMode(pilotLampPin, OUTPUT); // Set the pilot lamp pin as an output
}
void loop() {
digitalWrite(pilotLampPin, HIGH); // Turn on the pilot lamp
delay(1000); // Wait for 1 second
digitalWrite(pilotLampPin, LOW); // Turn off the pilot lamp
delay(1000); // Wait for 1 second
}
Note: The above code uses the Arduino's onboard LED as a stand-in for the Pilot Lamp Green. In a real-world application, you would connect the lamp to a digital pin through a relay or transistor that can handle the lamp's AC voltage and current requirements. Ensure proper isolation between the AC circuit and the Arduino's DC control circuitry.