

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 electrical connections, making it ideal for applications where multiple wires need to be organized and connected efficiently. This component is commonly used in industrial control systems, power distribution boards, and prototyping circuits.








The following table outlines the key technical details of the Borne 10 Pinos terminal block:
| Parameter | Specification |
|---|---|
| Number of Pins | 10 |
| Rated Voltage | 300V AC/DC |
| Rated Current | 15A |
| Wire Size Compatibility | 22-12 AWG |
| Material | Flame-retardant thermoplastic (UL94-V0) |
| Mounting Type | PCB mount or DIN rail (varies by model) |
| Connection Type | Screw terminal |
| Operating Temperature | -40°C to +105°C |
The Borne 10 Pinos terminal block does not have a specific pinout like ICs or microcontrollers. Instead, each pin corresponds to a screw terminal for connecting individual wires. Below is a general description of the pin layout:
| Pin Number | Description |
|---|---|
| 1-10 | Individual screw terminals for wire connections |
While the Borne 10 Pinos is not directly connected to an Arduino UNO, it can be used to organize and distribute connections between the Arduino and other components. Below is an example of how to use the terminal block to connect an LED and a resistor to an Arduino:
// Example: Controlling an LED via a terminal block connected to Arduino UNO
// Define the pin connected to the LED
const int ledPin = 9;
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
}
/* Wiring Instructions:
- Connect one terminal of the LED to a resistor (220 ohms recommended).
- Connect the other end of the resistor to the terminal block.
- Use another terminal to connect the LED's cathode to Arduino GND.
- Connect the terminal block's output to Arduino pin 9.
- Ensure all connections are secure and insulated.
*/
Q: Can I use the Borne 10 Pinos for high-frequency signals?
A: While it is primarily designed for power and low-frequency signals, it can handle high-frequency signals if proper shielding and grounding are implemented.
Q: Is the terminal block suitable for outdoor use?
A: The terminal block is not inherently weatherproof. For outdoor use, ensure it is housed in a weatherproof enclosure.
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.
Q: How do I clean the terminal block?
A: Use a dry cloth or compressed air to remove dust. Avoid using liquids or abrasive materials.
By following this documentation, users can effectively utilize the Borne 10 Pinos terminal block in their projects and ensure reliable and secure connections.