

The JUMPER-3-OLD is a short length of conductive material, typically encased in a plastic housing, used to connect two points in a circuit. This component is commonly employed to configure hardware settings, enable or disable specific features, or bridge connections on printed circuit boards (PCBs). The "3" in its name suggests it is designed for a specific 3-pin configuration, while "OLD" indicates it may be an older version or model, potentially with legacy compatibility.








The JUMPER-3-OLD is designed to connect two adjacent pins on a 3-pin header. Below is the typical configuration:
| Pin Number | Description |
|---|---|
| Pin 1 | First connection point (e.g., VCC) |
| Pin 2 | Middle pin (common connection point) |
| Pin 3 | Third connection point (e.g., GND) |
Note: The jumper bridges either Pin 1 and Pin 2 or Pin 2 and Pin 3, depending on its placement.
While the JUMPER-3-OLD is not directly programmable, it can be used to configure hardware connected to an Arduino UNO. For example, it can enable or disable specific features on a shield or module.
Here’s an example of how to use a jumper to configure a module and read its state in Arduino code:
// Example: Reading the state of a jumper-configured module
const int jumperPin = 7; // Pin connected to the module's output
void setup() {
pinMode(jumperPin, INPUT_PULLUP); // Configure pin as input with pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int jumperState = digitalRead(jumperPin); // Read the state of the jumper
if (jumperState == LOW) {
// Jumper is connecting the circuit (active state)
Serial.println("Jumper is connected.");
} else {
// Jumper is not connecting the circuit (inactive state)
Serial.println("Jumper is disconnected.");
}
delay(500); // Wait for 500ms before reading again
}
Note: This example assumes the jumper is used to configure a module that outputs a HIGH or LOW signal based on its state.
Q: Can I use the JUMPER-3-OLD on a 2-pin header?
A: Yes, but it will only connect the two pins and leave the third pin unused.
Q: Is the JUMPER-3-OLD compatible with modern devices?
A: While it is designed for older systems, it can still be used with modern devices as long as the pin pitch and ratings match.
Q: How do I know if the jumper is working?
A: Use a multimeter to check continuity between the connected pins. If there is continuity, the jumper is functioning correctly.
Q: Can I use multiple jumpers on the same header?
A: Yes, as long as the header has enough pins and the jumpers do not interfere with each other.
By following this documentation, you can effectively use the JUMPER-3-OLD in your projects and troubleshoot any issues that arise.