

The Borne 10 Pinos is a 10-pin terminal block designed for connecting multiple wires in a circuit. It provides a secure and reliable way to establish connections, making it ideal for both prototyping and permanent installations. This component is widely used in industrial, commercial, and DIY electronics projects due to its ease of use and robust design.








The following table outlines the key technical details of the Borne 10 Pinos:
| Parameter | Specification |
|---|---|
| Number of Pins | 10 |
| Rated Voltage | 300V AC/DC |
| Rated Current | 15A |
| Wire Size Compatibility | 22-12 AWG |
| Material | Flame-retardant thermoplastic (UL94V-0) |
| Mounting Type | PCB mount or screw terminal |
| Operating Temperature | -40°C to +105°C |
| Screw Type | M3 steel screws |
The Borne 10 Pinos does not have a specific pinout as it is a terminal block. Each pin corresponds to a screw terminal that connects to a wire. Below is a general description of the pin layout:
| Pin Number | Description |
|---|---|
| 1-10 | Individual screw terminals for wire connections |
The Borne 10 Pinos can be used to connect multiple sensors or devices to an Arduino UNO. Below is an example of wiring a temperature sensor and an LED to an Arduino using the terminal block:
// Example: Connecting a temperature sensor and an LED via Borne 10 Pinos
// Pin 1: VCC (5V from Arduino)
// Pin 2: GND (Ground from Arduino)
// Pin 3: Signal from temperature sensor to Arduino A0
// Pin 4: LED positive terminal to Arduino D13
// Pin 5: LED negative terminal to GND
const int tempSensorPin = A0; // Analog pin for temperature sensor
const int ledPin = 13; // Digital pin for LED
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(tempSensorPin); // Read temperature sensor value
Serial.println(sensorValue); // Print sensor value to Serial Monitor
if (sensorValue > 500) { // Example condition: Turn on LED if sensor value > 500
digitalWrite(ledPin, HIGH);
} else {
digitalWrite(ledPin, LOW);
}
delay(1000); // Wait for 1 second before next reading
}
Loose Connections: If a wire is not securely fastened, it may cause intermittent connections or circuit failure.
Overheating: The terminal block may overheat if the current exceeds the rated 15A.
Wire Slippage: Wires may slip out of the terminal block if not inserted correctly.
Q: Can I use the Borne 10 Pinos for high-frequency signals?
A: While the terminal block can handle low-frequency signals effectively, it may not be suitable for high-frequency signals due to potential signal degradation.
Q: Is the terminal block waterproof?
A: No, the Borne 10 Pinos is not waterproof. Use it in dry environments or enclosures to protect it from moisture.
Q: Can I connect multiple wires to a single terminal?
A: It is not recommended to connect multiple wires to a single terminal, as this may compromise the connection's reliability and safety.
By following this documentation, you can effectively use the Borne 10 Pinos in your projects for secure and reliable wire connections.