

The JUMPER-3 is a small, versatile connector used to close or complete an electrical circuit. It typically consists of three pins arranged in a row, allowing users to modify circuit behavior by connecting specific pins. By placing a removable shunt (a small conductive sleeve) over two adjacent pins, the circuit can be configured in different ways. This component is widely used in electronics for setting hardware configurations, enabling or disabling features, and selecting between multiple operational modes.








The JUMPER-3 is a passive component with no active electrical properties. Its specifications are primarily mechanical and depend on the materials and dimensions of the pins and shunt.
The JUMPER-3 consists of three pins, labeled as follows:
| Pin Number | Label | Description |
|---|---|---|
| 1 | VCC | Typically connected to a voltage source. |
| 2 | MID | Middle pin, used for configuration purposes. |
| 3 | GND | Typically connected to ground. |
The configuration depends on which two pins are connected by the shunt:
The JUMPER-3 can be used to select between two operational modes in an Arduino-based project. For example, it can toggle between two input pins for a sensor.
// Example code for using JUMPER-3 to toggle between two modes
const int pin1 = 2; // Pin connected to JUMPER-3 Pin 1
const int pin2 = 3; // Pin connected to JUMPER-3 Pin 2
void setup() {
pinMode(pin1, INPUT_PULLUP); // Configure pin1 as input with pull-up resistor
pinMode(pin2, INPUT_PULLUP); // Configure pin2 as input with pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
if (digitalRead(pin1) == LOW) {
// If JUMPER-3 connects Pin 1 and Pin 2, Mode 1 is active
Serial.println("Mode 1 Active");
} else if (digitalRead(pin2) == LOW) {
// If JUMPER-3 connects Pin 2 and Pin 3, Mode 2 is active
Serial.println("Mode 2 Active");
} else {
// If no connection, no mode is active
Serial.println("No Mode Active");
}
delay(500); // Delay for readability
}
Shunt Does Not Fit Properly:
Circuit Does Not Respond to Configuration Changes:
Short Circuit Detected:
Q: Can I use the JUMPER-3 for high-current applications?
A: No, the JUMPER-3 is typically rated for a maximum current of 2 A. For higher currents, use a more robust connector.
Q: How do I know which pins to connect?
A: Refer to the circuit schematic or device manual. The function of each pin is usually labeled on the PCB.
Q: Can I use the JUMPER-3 without a shunt?
A: Without a shunt, the JUMPER-3 will leave the circuit open, effectively disabling the feature or mode it controls.
Q: How durable is the JUMPER-3?
A: The JUMPER-3 is rated for approximately 200+ insertion/removal cycles, depending on the quality of the component.