

The Splicing Connector 2 by WAGO is a compact and efficient solution for joining two or more electrical wires or cables. Designed for ease of use, it ensures a secure and reliable connection for signal transmission or power distribution. This component is widely used in electrical installations, control panels, and DIY projects due to its tool-free operation and robust design.








The following table outlines the key technical details of the Splicing Connector 2:
| Parameter | Specification | 
|---|---|
| Manufacturer | WAGO | 
| Part ID | Splicing Connector | 
| Number of Connections | 2 | 
| Wire Size Compatibility | 28–12 AWG (0.08–4 mm²) | 
| Voltage Rating | 450 V | 
| Current Rating | 32 A | 
| Operating Temperature | -40°C to +85°C | 
| Housing Material | Polycarbonate (PC), flame-retardant | 
| Connection Type | Push-in spring technology | 
| Dimensions (L x W x H) | 20.5 mm x 13.1 mm x 8.3 mm | 
The Splicing Connector 2 does not have traditional pins but features two wire entry points. The table below describes the wire entry points:
| Entry Point | Description | 
|---|---|
| Entry Point 1 | Insert the first wire (28–12 AWG) | 
| Entry Point 2 | Insert the second wire (28–12 AWG) | 
While the Splicing Connector 2 is not directly programmable, it can be used to connect power or signals to an Arduino UNO. For example, you can use it to connect a 5V power supply to the Arduino's VIN and GND pins.
// Example: Blinking an LED using a power connection via Splicing Connector 2
// Ensure the 5V power supply is securely connected to the Arduino using the connector
int ledPin = 13; // Pin connected to the onboard LED
void setup() {
  pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
  digitalWrite(ledPin, HIGH); // Turn the LED on
  delay(1000);                // Wait for 1 second
  digitalWrite(ledPin, LOW);  // Turn the LED off
  delay(1000);                // Wait for 1 second
}
Q1: Can I reuse the Splicing Connector 2?
A1: Yes, the connector is reusable. Simply remove the wires by pulling them out while pressing the release lever (if applicable).
Q2: Is the connector suitable for outdoor use?
A2: The connector is not waterproof. Use it in a weatherproof enclosure if outdoor use is required.
Q3: Can I connect wires of different sizes?
A3: Yes, as long as the wire sizes are within the specified range (28–12 AWG).
Q4: Does the connector require any special tools?
A4: No, the push-in spring technology allows for tool-free operation.