0
0
Embedded-cHow-ToBeginner · 4 min read

How to Connect Components in Schematic for PCB Design

To connect components in a schematic in PCB design, use wire or net tools to draw lines between component pins that should be electrically connected. These connections define the circuit paths and ensure the PCB layout software understands how signals flow between parts.
📐

Syntax

In schematic design software, connections between components are made using wires or nets. The basic syntax or usage pattern is:

  • Wire Tool: Draw a line from one component pin to another to create an electrical connection.
  • Net Label: Assign a name to a wire to identify the signal and connect multiple points with the same name.
  • Pin: The connection point on a component symbol where wires attach.
plaintext
Wire from Pin_A on Component_1 to Pin_B on Component_2
Net Label: "GND" assigned to wires connecting all ground pins
💻

Example

This example shows how to connect a resistor and an LED in a schematic using wires and net labels.

plaintext
Component_1: Resistor R1
Pins: 1, 2
Component_2: LED D1
Pins: Anode, Cathode

Step 1: Use Wire Tool to connect R1 pin 2 to D1 Anode
Step 2: Use Wire Tool to connect R1 pin 1 to Net Label "VCC"
Step 3: Use Wire Tool to connect D1 Cathode to Net Label "GND"
Output
R1 pin 2 connected to D1 Anode R1 pin 1 connected to VCC net D1 Cathode connected to GND net
⚠️

Common Pitfalls

  • Not connecting wires exactly to component pins, causing open circuits.
  • Forgetting to assign net labels, which can lead to disconnected signals in PCB layout.
  • Overlapping wires without proper junction dots, causing confusion if connections exist or not.
  • Using different net names for the same signal, breaking connectivity.
plaintext
Wrong:
Wire from R1 pin 2 close but not touching D1 Anode (no connection)

Right:
Wire from R1 pin 2 exactly touching D1 Anode with junction dot
📊

Quick Reference

ActionDescriptionTip
Use Wire ToolDraw lines between pins to connect componentsEnsure wires start/end exactly on pins
Assign Net LabelsName wires to identify signalsUse consistent names for same signals
Add Junction DotsShow wire intersections that connectAvoid confusion with crossing wires
Check ConnectionsVerify all pins are connectedUse ERC (Electrical Rule Check) tool

Key Takeaways

Use wire tools to draw connections exactly between component pins in the schematic.
Assign consistent net labels to wires to define signal names and ensure connectivity.
Add junction dots at wire intersections to clarify electrical connections.
Verify connections with electrical rule checks to avoid open or short circuits.
Avoid overlapping wires without connection to prevent design errors.