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

How to Use DP4T: Examples, Pinouts, and Specs

Image of DP4T
Cirkit Designer LogoDesign with DP4T in Cirkit Designer

Introduction

The DP4T (Double Pole 4 Throw) switch, manufactured by Comax with part ID SK-42F05G6, is an electromechanical device designed to route one input to one of four possible outputs. This versatile switch is commonly used in applications requiring multiple circuit paths, such as audio signal routing, test equipment, and multi-channel control systems. Its robust design ensures reliable operation in a variety of environments.

Explore Projects Built with DP4T

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Bluetooth-Controlled Multi-Function Arduino Nano Gadget
Image of Copy of Smarttt: A project utilizing DP4T in a practical application
This is a portable, microcontroller-driven interactive device featuring Bluetooth connectivity, visual (RGB LED), auditory (loudspeaker), and haptic (vibration motor) feedback, user input (pushbutton), and a rechargeable power system (TP4056 with Li-ion battery).
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Powered Wi-Fi Controlled Robotic Car with OLED Display and Ultrasonic Sensor
Image of playbot: A project utilizing DP4T in a practical application
This circuit is a battery-powered system featuring an ESP32 microcontroller that controls an OLED display, a motor driver for two hobby motors, an ultrasonic sensor for distance measurement, and a DFPlayer Mini for audio output through a loudspeaker. The TP4056 module manages battery charging, and a step-up boost converter provides a stable 5V supply to the components.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Smart Environmental Monitoring System with Relay Control
Image of SOCOTECO: A project utilizing DP4T in a practical application
This is a smart environmental monitoring and control system featuring an ESP32 microcontroller interfaced with a PZEM004T for power monitoring, relay modules for actuating bulbs and a fan, and an LCD for user interface. It includes flame, gas, and vibration sensors for safety monitoring purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Interactive Keypad with TFT Display and Audio Output
Image of banking: A project utilizing DP4T in a practical application
This circuit features an ESP32 microcontroller interfaced with a 4x4 membrane matrix keypad, an ILI9341 TFT display, a DFPlayer Mini MP3 player, and a loudspeaker. The ESP32 reads input from the keypad, controls the display, and communicates with the DFPlayer Mini to play audio through the loudspeaker.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with DP4T

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 Copy of Smarttt: A project utilizing DP4T in a practical application
Bluetooth-Controlled Multi-Function Arduino Nano Gadget
This is a portable, microcontroller-driven interactive device featuring Bluetooth connectivity, visual (RGB LED), auditory (loudspeaker), and haptic (vibration motor) feedback, user input (pushbutton), and a rechargeable power system (TP4056 with Li-ion battery).
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of playbot: A project utilizing DP4T in a practical application
ESP32-Powered Wi-Fi Controlled Robotic Car with OLED Display and Ultrasonic Sensor
This circuit is a battery-powered system featuring an ESP32 microcontroller that controls an OLED display, a motor driver for two hobby motors, an ultrasonic sensor for distance measurement, and a DFPlayer Mini for audio output through a loudspeaker. The TP4056 module manages battery charging, and a step-up boost converter provides a stable 5V supply to the components.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of SOCOTECO: A project utilizing DP4T in a practical application
ESP32-Based Smart Environmental Monitoring System with Relay Control
This is a smart environmental monitoring and control system featuring an ESP32 microcontroller interfaced with a PZEM004T for power monitoring, relay modules for actuating bulbs and a fan, and an LCD for user interface. It includes flame, gas, and vibration sensors for safety monitoring purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of banking: A project utilizing DP4T in a practical application
ESP32-Based Interactive Keypad with TFT Display and Audio Output
This circuit features an ESP32 microcontroller interfaced with a 4x4 membrane matrix keypad, an ILI9341 TFT display, a DFPlayer Mini MP3 player, and a loudspeaker. The ESP32 reads input from the keypad, controls the display, and communicates with the DFPlayer Mini to play audio through the loudspeaker.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications

  • Audio and video signal switching
  • Test and measurement equipment
  • Multi-channel control systems
  • Prototyping and circuit design
  • Industrial automation

Technical Specifications

The following table outlines the key technical details of the DP4T switch:

Parameter Value
Manufacturer Comax
Part ID SK-42F05G6
Configuration Double Pole, 4 Throw (DP4T)
Contact Rating 0.5A at 50V DC
Insulation Resistance ≥ 100 MΩ at 500V DC
Contact Resistance ≤ 50 mΩ
Operating Temperature -25°C to +85°C
Mechanical Life 10,000 cycles
Mounting Style Through-hole

Pin Configuration and Descriptions

The DP4T switch has a total of 12 pins, arranged as follows:

Pin Number Description
1, 2, 3, 4 Output terminals for Pole 1
5 Common terminal for Pole 1
6, 7, 8, 9 Output terminals for Pole 2
10 Common terminal for Pole 2
11, 12 Not connected (NC) or unused pins

Usage Instructions

How to Use the DP4T Switch in a Circuit

  1. Identify the Pins: Refer to the pin configuration table to locate the common terminals (Pins 5 and 10) and the output terminals for each pole.
  2. Connect the Common Terminals: Connect the input signal to the common terminals (Pins 5 and 10).
  3. Connect the Output Terminals: Connect the desired output paths to the corresponding output terminals (Pins 1–4 for Pole 1 and Pins 6–9 for Pole 2).
  4. Switch Operation: Use the switch actuator to select the desired output path. Each pole operates independently, allowing two separate input signals to be routed simultaneously.

Important Considerations

  • Voltage and Current Ratings: Ensure the input signal does not exceed the switch's rated voltage (50V DC) and current (0.5A).
  • Debouncing: If the switch is used in digital circuits, consider implementing debouncing techniques to avoid signal noise.
  • Mounting: Secure the switch properly on a PCB using the through-hole mounting style to ensure mechanical stability.

Example: Connecting to an Arduino UNO

The DP4T switch can be used with an Arduino UNO to select between multiple input signals. Below is an example code snippet:

// Example: Reading the state of a DP4T switch with Arduino UNO
// Connect the common terminal of Pole 1 to GND
// Connect the output terminals of Pole 1 to digital pins 2, 3, 4, and 5

const int switchPins[] = {2, 3, 4, 5}; // DP4T output terminals
int switchState[4]; // Array to store the state of each terminal

void setup() {
  Serial.begin(9600); // Initialize serial communication
  for (int i = 0; i < 4; i++) {
    pinMode(switchPins[i], INPUT_PULLUP); // Set pins as input with pull-up resistors
  }
}

void loop() {
  for (int i = 0; i < 4; i++) {
    switchState[i] = digitalRead(switchPins[i]); // Read the state of each terminal
  }

  // Print the state of the switch
  Serial.print("Switch States: ");
  for (int i = 0; i < 4; i++) {
    Serial.print(switchState[i]);
    Serial.print(" ");
  }
  Serial.println();
  delay(500); // Delay for readability
}

Notes:

  • Ensure the common terminal is connected to GND for proper operation.
  • Use pull-up resistors (internal or external) to avoid floating inputs.

Troubleshooting and FAQs

Common Issues

  1. No Signal Output:

    • Cause: Incorrect wiring of the common or output terminals.
    • Solution: Double-check the pin configuration and ensure proper connections.
  2. Intermittent Signal:

    • Cause: Poor contact or mechanical wear.
    • Solution: Inspect the switch for damage or debris. Replace if necessary.
  3. Signal Noise in Digital Circuits:

    • Cause: Switch bouncing.
    • Solution: Implement software or hardware debouncing techniques.

FAQs

Q: Can the DP4T switch handle AC signals?
A: Yes, the switch can handle low-power AC signals, provided the voltage and current ratings are not exceeded.

Q: How do I clean the switch contacts?
A: Use a contact cleaner spray and a soft brush to remove debris. Avoid using excessive force.

Q: Can I use the DP4T switch for high-frequency signals?
A: The switch is not optimized for high-frequency signals due to potential signal loss and crosstalk. For such applications, consider using a dedicated RF switch.

This concludes the documentation for the DP4T (SK-42F05G6) switch. For further assistance, refer to the manufacturer's datasheet or contact Comax support.