

The Round Rocker Switch with LED is a versatile and user-friendly component designed for power control in electronic devices and appliances. Its integrated LED indicator provides a clear visual cue of the switch's status (on/off), making it ideal for applications where status visibility is crucial. This switch is commonly used in power strips, home appliances, automotive systems, and DIY electronics projects.








The Round Rocker Switch with LED typically has three pins. Below is the pin configuration:
| Pin Number | Label | Description |
|---|---|---|
| 1 | Load/Output | Connects to the load (e.g., the device or circuit being powered). |
| 2 | Input/Line | Connects to the power source (e.g., positive terminal of the power supply). |
| 3 | LED Ground | Connects to the ground terminal to complete the LED circuit. |
Note: The pin labels may vary slightly depending on the manufacturer. Always refer to the datasheet for your specific model.
Mounting the Switch:
Wiring the Switch:
Testing the Switch:
The Round Rocker Switch with LED can be used to control a 12V device while interfacing with an Arduino UNO. Below is an example circuit and code:
// Arduino code to monitor the state of a Round Rocker Switch with LED
// and control an LED on the Arduino board accordingly.
const int switchPin = 2; // Pin connected to the switch's Load/Output pin
const int ledPin = 13; // Built-in LED on the Arduino board
void setup() {
pinMode(switchPin, INPUT_PULLUP); // Configure switch pin as input with pull-up resistor
pinMode(ledPin, OUTPUT); // Configure LED pin as output
}
void loop() {
int switchState = digitalRead(switchPin); // Read the state of the switch
if (switchState == LOW) {
// Switch is ON (assuming active-low configuration)
digitalWrite(ledPin, HIGH); // Turn on the Arduino's LED
} else {
// Switch is OFF
digitalWrite(ledPin, LOW); // Turn off the Arduino's LED
}
}
Note: In this example, the switch is connected in an active-low configuration, meaning the pin reads
LOWwhen the switch is ON.
LED Does Not Light Up:
Switch Does Not Control the Load:
Switch Feels Loose in the Mounting Hole:
Q: Can I use this switch for DC applications other than 12V?
A: Yes, but ensure the voltage and current ratings of the switch are not exceeded. The LED may not function properly at voltages other than 12V.
Q: Can I use this switch in outdoor applications?
A: This switch is not waterproof. For outdoor use, consider a waterproof enclosure or a switch with an IP-rated design.
Q: What happens if I reverse the LED Ground connection?
A: The LED will not light up, but the switch will still function for power control.
By following this documentation, you can effectively integrate the Round Rocker Switch with LED into your projects and troubleshoot common issues with ease.