

A Header 3 is a type of connector used in electronic circuits to facilitate the connection of multiple wires or cables. It typically features three pins, allowing for secure and organized connections. These connectors are widely used in prototyping, PCB designs, and modular electronic systems. Header 3 connectors are versatile and can be used for both signal and power connections, making them a staple in many electronic projects.








The Header 3 connector consists of three pins, which can be configured for various purposes depending on the circuit design. Below is a general description of the pin layout:
| Pin Number | Description | Common Use |
|---|---|---|
| 1 | Signal or Power Input | Data signal or positive voltage |
| 2 | Ground (GND) | Circuit ground |
| 3 | Signal or Power Output | Data signal or negative voltage |
Note: The specific pin configuration may vary depending on the application. Always refer to the circuit schematic for proper usage.
Below is an example of how to use a Header 3 to connect an LED to an Arduino UNO:
// Example code to blink an LED connected via a Header 3 connector
// Pin 9 is used as the output pin for the LED signal
const int ledPin = 9; // Define the pin connected to the 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
}
Note: Always use a current-limiting resistor in series with the LED to prevent damage.
Loose Connections:
Short Circuits:
Overheating:
Incorrect Pinout:
Q: Can I use a Header 3 for high-frequency signals?
Q: Are Header 3 connectors reusable?
Q: Can I use a Header 3 for power connections?
By following this documentation, you can effectively use a Header 3 connector in your electronic projects.