The Sinaleira Vermelha is a red traffic light used in traffic control systems to signal vehicles and pedestrians to stop. It is a critical component in ensuring road safety and efficient traffic management. The red light is typically part of a larger traffic light assembly, which includes green and yellow lights, and operates in coordination with other traffic signals.
Parameter | Value |
---|---|
Operating Voltage | 12V DC or 220V AC (varies by model) |
Power Consumption | 5W to 15W |
Light Source | LED or Incandescent |
Luminous Intensity | 200 to 400 cd (candela) |
Viewing Angle | 30° to 60° |
Operating Temperature | -20°C to 60°C |
Housing Material | Polycarbonate or Aluminum |
Ingress Protection (IP) | IP65 (weather-resistant) |
Lifespan | 50,000 hours (for LED models) |
For LED-based Sinaleira Vermelha, the pin configuration is as follows:
Pin Number | Label | Description |
---|---|---|
1 | VCC | Positive power supply (12V DC or 220V AC) |
2 | GND | Ground connection |
3 | Control Pin | Signal input to turn the light ON or OFF |
Note: For AC-powered models, the control pin may not be present, and the light is controlled via a relay or switch.
Below is an example of how to control a 12V DC Sinaleira Vermelha using an Arduino UNO and a relay module.
// Define the relay control pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Turn off the traffic light initially
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn on the red traffic light for 5 seconds
digitalWrite(relayPin, HIGH);
delay(5000); // Wait for 5 seconds
// Turn off the red traffic light
digitalWrite(relayPin, LOW);
delay(5000); // Wait for 5 seconds
}
Note: Use a suitable relay module that can handle the current and voltage requirements of the traffic light.
Issue | Possible Cause | Solution |
---|---|---|
Light does not turn on | Incorrect wiring or power supply issue | Verify connections and power source |
Flickering light | Unstable power supply | Use a regulated power supply |
Overheating | Poor ventilation or high ambient temp | Ensure proper airflow and cooling |
Control signal not working | Faulty microcontroller or relay | Check the control circuit and replace faulty components |
Can I use the Sinaleira Vermelha with a solar power system?
What is the lifespan of the LED-based Sinaleira Vermelha?
Can I use this traffic light indoors?
Is the Sinaleira Vermelha compatible with smart traffic systems?
By following this documentation, you can effectively use the Sinaleira Vermelha in your traffic control or signaling projects.