

A Pilot Lamp Red is an indicator lamp commonly used in electronic circuits to provide visual feedback about the status of a system or component. The red color is often associated with warnings, errors, or critical states, making it an essential tool for monitoring and diagnostics. These lamps are widely used in control panels, appliances, machinery, and various types of equipment to signal power on/off status, fault conditions, or as a part of user interfaces.








| Pin Number | Description |
|---|---|
| 1 | Live (Phase) Input |
| 2 | Neutral Return Path |
// Code to blink an external Pilot Lamp Red connected to an Arduino UNO
const int pilotLampPin = 13; // Assign the pin connected to the Pilot Lamp Red
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 assumes the use of a low-voltage Pilot Lamp Red compatible with the Arduino's 5V output. If the lamp is rated for higher voltages, additional components such as a relay module will be required to interface with the Arduino safely.
Disclaimer: This documentation is for informational purposes only. Always consult the component's datasheet for the most accurate and detailed information.