← all lessons
DC Circuits · #4 of 48

Ground, References, and Measurement Gotchas

Why 'Ground' Is Not Magic

Why it matters

“Ground” is just a reference point. Understanding this prevents measurement errors, floating circuits, and mysterious bugs.

The idea

What Is Ground?

Ground is just a reference point — voltage is always measured relative to something.

Common Ground

All components in a circuit must share the same ground:

Measurement Gotchas

Why It Matters

Many bugs come from:

Demo

Ground is a concept, not a demo. Review this before troubleshooting circuits.

Key takeaways

Going deeper

In AC power systems, ‘ground’ refers to earth ground (literally connected to the earth). In DC circuits, it’s just the negative terminal. In mixed-signal systems (analog + digital), you might have separate analog ground and digital ground connected at a single point to reduce noise coupling.

Math details

Voltage is always relative:
  V_AB = V_A - V_B

  If B is ground (0V):
  V_AB = V_A - 0 = V_A

  So "voltage at point A" means "voltage relative to ground"

Example:
  Battery: 3.7V (positive terminal relative to negative)
  ESP32: VCC = 3.3V (relative to GND pin)
  If ESP32 GND connects to battery negative:
    VCC pin = 3.3V relative to battery negative
    Battery positive = 3.7V relative to battery negative
    Difference = 0.4V (this is why you need a regulator!)

Implementation

Ground Checklist

  1. Verify all components share the same ground
  2. Check ground connections with multimeter continuity mode
  3. Use DC mode (not AC) for battery/microcontroller measurements
  4. Measure voltage across components (parallel), current through (series)
  5. Power on the circuit before measuring

Troubleshooting

Symptom: Circuit doesn’t work, but voltages look correct

Check: Is ground connected? Use continuity mode to verify.

Symptom: Readings jump around randomly

Check: Is circuit powered? Are you using DC mode?

full glossary →