Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use 3 pin Switch: Examples, Pinouts, and Specs

Image of 3 pin Switch
Cirkit Designer LogoDesign with 3 pin Switch in Cirkit Designer

Introduction

A 3 pin switch is an electrical component used to control the flow of current in a circuit. It typically features three terminals: one for input, one for output, and one for grounding or a second output. This configuration allows for versatile applications, such as single-pole, double-throw (SPDT) switching. The 3 pin switch is widely used in electronic circuits for toggling between two states or outputs, making it a fundamental component in both simple and complex systems.

Explore Projects Built with 3 pin Switch

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered LED Toggle Switch Circuit
Image of EXP. 7 E: A project utilizing 3 pin Switch in a practical application
This circuit consists of a toggle switch, a red LED, and a power source. The toggle switch controls the connection between the power source and the LED, allowing the LED to be turned on or off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Toggle Switch Controlled Lamp Circuit with Banana Sockets
Image of STAIRCASE: A project utilizing 3 pin Switch in a practical application
This circuit consists of two toggle switches and a red lamp connected to panel mount banana sockets. The switches control the connection between the red and black banana sockets, allowing the lamp to be turned on or off depending on the switch positions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered LED Array with Rocker Switch Control
Image of Natt. fr. verkefni: A project utilizing 3 pin Switch in a practical application
This circuit consists of a 3.3V battery powering four red LEDs connected in parallel, with a rocker switch controlling the connection to ground. When the switch is closed, all LEDs will light up simultaneously.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered LED Toggle Switch Circuit
Image of EXP. 7 E: A project utilizing 3 pin Switch in a practical application
This circuit consists of a red LED, a toggle switch, and a power source. The LED is powered by a 3.7V supply from the MAHIR 1.mini module, and its illumination is controlled by the toggle switch, which connects or disconnects the LED's cathode to ground.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with 3 pin Switch

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of EXP. 7 E: A project utilizing 3 pin Switch in a practical application
Battery-Powered LED Toggle Switch Circuit
This circuit consists of a toggle switch, a red LED, and a power source. The toggle switch controls the connection between the power source and the LED, allowing the LED to be turned on or off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of STAIRCASE: A project utilizing 3 pin Switch in a practical application
Toggle Switch Controlled Lamp Circuit with Banana Sockets
This circuit consists of two toggle switches and a red lamp connected to panel mount banana sockets. The switches control the connection between the red and black banana sockets, allowing the lamp to be turned on or off depending on the switch positions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Natt. fr. verkefni: A project utilizing 3 pin Switch in a practical application
Battery-Powered LED Array with Rocker Switch Control
This circuit consists of a 3.3V battery powering four red LEDs connected in parallel, with a rocker switch controlling the connection to ground. When the switch is closed, all LEDs will light up simultaneously.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of EXP. 7 E: A project utilizing 3 pin Switch in a practical application
Battery-Powered LED Toggle Switch Circuit
This circuit consists of a red LED, a toggle switch, and a power source. The LED is powered by a 3.7V supply from the MAHIR 1.mini module, and its illumination is controlled by the toggle switch, which connects or disconnects the LED's cathode to ground.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Power control in electronic devices
  • Switching between two outputs in a circuit
  • Mode selection in appliances and gadgets
  • Signal routing in audio and video systems
  • Control panels and user interfaces

Technical Specifications

Key Technical Details

  • Voltage Rating: Typically 12V to 250V (varies by model)
  • Current Rating: Commonly 0.5A to 5A
  • Switch Type: Single-Pole Double-Throw (SPDT)
  • Contact Resistance: ≤ 50 mΩ
  • Insulation Resistance: ≥ 100 MΩ
  • Operating Temperature: -20°C to 85°C
  • Mechanical Life: Up to 100,000 cycles

Pin Configuration and Descriptions

The 3 pin switch has the following pin configuration:

Pin Number Name Description
1 Common (COM) The input terminal where the current enters the switch.
2 Normally Open (NO) The output terminal that connects to the common pin when the switch is activated.
3 Normally Closed (NC) The output terminal that connects to the common pin when the switch is not activated.

Usage Instructions

How to Use the Component in a Circuit

  1. Identify the Pins: Use the pin configuration table above to identify the Common (COM), Normally Open (NO), and Normally Closed (NC) pins.
  2. Connect the Input: Attach the input voltage or signal to the Common (COM) pin.
  3. Connect the Outputs:
    • If you want the circuit to be closed when the switch is activated, connect the load to the Normally Open (NO) pin.
    • If you want the circuit to be closed when the switch is not activated, connect the load to the Normally Closed (NC) pin.
  4. Secure the Connections: Ensure all connections are secure and insulated to prevent short circuits.
  5. Test the Switch: Toggle the switch to verify that it operates as expected.

Important Considerations and Best Practices

  • Voltage and Current Ratings: Ensure the switch's voltage and current ratings are compatible with your circuit to avoid damage.
  • Debouncing: When using the switch in digital circuits, consider implementing debouncing techniques to eliminate noise caused by mechanical contacts.
  • Mounting: Secure the switch properly to prevent accidental disconnections or damage.
  • Polarity: While the switch itself is not polarized, ensure proper polarity in the connected circuit components.

Example: Connecting a 3 Pin Switch to an Arduino UNO

Below is an example of how to use a 3 pin switch with an Arduino UNO to toggle an LED:

// Define pin numbers
const int switchPin = 2;  // Pin connected to the Common (COM) pin of the switch
const int ledPin = 13;    // Pin connected to the LED

void setup() {
  pinMode(switchPin, INPUT_PULLUP); // Set switch pin as input with pull-up resistor
  pinMode(ledPin, OUTPUT);          // Set LED pin as output
}

void loop() {
  int switchState = digitalRead(switchPin); // Read the state of the switch

  if (switchState == LOW) { // If the switch is pressed (COM connected to NO)
    digitalWrite(ledPin, HIGH); // Turn on the LED
  } else { // If the switch is not pressed (COM connected to NC)
    digitalWrite(ledPin, LOW);  // Turn off the LED
  }
}

Notes:

  • The INPUT_PULLUP mode is used to simplify the circuit by enabling the internal pull-up resistor of the Arduino.
  • Connect the Common (COM) pin of the switch to the Arduino pin 2, the Normally Open (NO) pin to ground, and the Normally Closed (NC) pin can remain unconnected.

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Switch Not Working:

    • Cause: Loose or incorrect connections.
    • Solution: Double-check the wiring and ensure all connections are secure.
  2. LED Always On or Off:

    • Cause: Incorrect pin configuration or faulty switch.
    • Solution: Verify the pin connections and test the switch with a multimeter.
  3. Switch Generates Noise in Digital Circuits:

    • Cause: Mechanical contact bounce.
    • Solution: Implement software or hardware debouncing techniques.
  4. Switch Overheats:

    • Cause: Exceeding the voltage or current rating.
    • Solution: Ensure the switch is used within its specified ratings.

FAQs

Q1: Can I use a 3 pin switch for AC circuits?
A1: Yes, as long as the switch's voltage and current ratings are suitable for the AC circuit.

Q2: What is the difference between Normally Open (NO) and Normally Closed (NC)?
A2: Normally Open (NO) means the circuit is open (disconnected) when the switch is not activated, while Normally Closed (NC) means the circuit is closed (connected) when the switch is not activated.

Q3: How do I test a 3 pin switch with a multimeter?
A3: Set the multimeter to continuity mode. Connect one probe to the Common (COM) pin and the other to the Normally Open (NO) or Normally Closed (NC) pin. Toggle the switch to check continuity.

Q4: Can I use all three pins simultaneously?
A4: Yes, you can use the Common (COM) pin to toggle between the Normally Open (NO) and Normally Closed (NC) pins, depending on the switch's position.