← LOGBOOK LOG-004
COMPLETE · ELECTRONICS ·
SCHEMATICSFUNDAMENTALSNOTATION

Schematics

Learning to read circuit diagrams — the universal language of electronics.

What a Schematic Is

A schematic is an abstract diagram that shows how components in a circuit are electrically connected — not how they’re physically arranged. Wires are straight lines. Components are standardized symbols. It’s a language.

The physical layout (which hole on a breadboard, which side of a PCB) is irrelevant to the schematic. The same schematic can describe a circuit built a hundred different ways.

Essential Symbols

ComponentSymbol description
WireStraight line
JunctionDot where wires meet and connect
No connectionWires crossing with no dot = not connected
Battery / DC supplyLong + short lines alternating; or labeled Vcc/+5V
GroundDownward-pointing lines narrowing to a point
ResistorZigzag (US) or rectangle (European/IEC)
LEDTriangle pointing into a line, with arrows leaving (light)
SwitchLine with a gap and a pivot
CapacitorTwo parallel lines (equal or one curved for polarized)
InductorSeries of arcs
Transistor (NPN)Three terminals: Base, Collector, Emitter; arrow on emitter pointing out

Reading Conventions

Power flows top to bottom by convention. Positive rails are usually at the top, ground at the bottom.

Ground is the reference point — 0V. All voltages are measured relative to it. There can be multiple ground symbols in a schematic; they’re all electrically connected.

Net labels — instead of drawing a wire across a huge schematic, you label both ends with the same name (e.g., “VCC”, “UART_TX”). They’re connected.

Component values are written next to the symbol: “470Ω”, “100nF”, “10µH”.

Reference designators label each component: R1, R2 (resistors), C1, C2 (capacitors), D1, D2 (diodes), U1 (ICs), Q1 (transistors).

Reading a Simple LED Circuit

+9V ──── R1 (470Ω) ──── D1 (LED anode) ──── D1 (cathode) ──── GND

What I see in the schematic:

  1. Supply voltage at top
  2. Current limiting resistor in series
  3. LED with correct orientation (triangle → bar = anode → cathode)
  4. Ground at bottom

Datasheets and Schematics Together

Every component has a datasheet. The datasheet shows the schematic symbol, pinout, and operating conditions. Reading the symbol tells you how to wire it. Reading the specs tells you what values to use around it.

This is the workflow: find a component, read the datasheet, drop the symbol into the schematic with the right supporting components.

KiCad

Discovered KiCad — an open source EDA (Electronic Design Automation) tool. For now I’m just reading schematics by hand. Eventually: draw them in KiCad, then route a PCB from them.

The Insight

A schematic is like pseudocode — it describes what the circuit does, not how it’s physically implemented. Once you can read them, any circuit becomes approachable: follow the signals, trace the paths, understand the intent.