You can't fix what you can't see
Up to now the ladder has been about building and understanding circuits. L7 is about a different, equally vital skill: measuring them. Because here's the hard truth — electricity is invisible.
The problem: you can't see electricity
A wire carrying 5V looks identical to a wire carrying 0V. A dead short looks the same as a healthy connection. A microcontroller sending perfect I²C data looks exactly like one sending nothing at all. You cannot tell, by looking, what a circuit is actually doing.
This is why every competent technician's real superpower isn't a soldering iron — it's the ability to make the invisible visible. Test and measurement equipment turns hidden voltage, current, and signals into numbers and pictures you can reason about.
From guessing to knowing
Without instruments, debugging is guessing: "maybe it's the sensor… maybe the wire… let me swap parts and hope." That's slow, expensive, and often wrong.
With instruments, debugging becomes deduction:
- Is power even reaching the board? → measure the voltage.
- Is this wire actually connected? → check continuity.
- Is the microcontroller really sending the signal? → look at it on a scope or logic analyzer.
Each measurement eliminates possibilities until only the fault remains. A good diagnosis is a chain of measurements, each one narrowing the search. This is exactly how an experienced technician approaches a faulty unit — and L7 is the toolkit behind that.
The instruments of L7
This module covers the core bench, roughly in order of how often you'll reach for each:
- Multimeter — the everyday workhorse (this lesson + the next). Voltage, current, resistance, continuity, diode test.
- Bench power supply — a controllable, current-limited source; a debugging tool in its own right (Lesson 3).
- Oscilloscope — sees signals change over time; essential for anything fast (Lesson 4).
- Logic analyzer & signal generator — decode digital buses, inject test signals (Lesson 5), plus awareness of specialist tools (LCR meter, hot-air rework).
Why this matters in the field
L7 makes the difference between "the unit doesn't work, send it back" and "the unit's 12V rail is fine but the charge controller output reads 0V — it's the controller." The second statement saves time, money, and a customer relationship. It's also what lets you support the products from L4 (microcontrollers), L5 (the signals between chips), and L6 (the power systems) with real authority instead of guesswork.
We start with the tool you'll use more than all the others combined: the multimeter.
The core reason test equipment matters is:
The multimeter: the everyday workhorse
The multimeter is the single most-used instrument on any bench — the first thing you pick up and the last thing you put down. It measures several things, but its most common job is the simplest: reading a voltage.
One tool, several measurements
A multimeter combines several meters in one: a voltmeter, ammeter, ohmmeter, and usually continuity, diode-test, and capacitance modes. You select what you want with a dial, and connect two probes (red = positive, black = common/negative) to the circuit. The same two probes, different mode — that's the multimeter.
Measuring voltage: probes in parallel
Voltage is the measurement you'll do most. The key idea: voltage is a difference between two points, so you measure it across them — placing the two probes on the two points without breaking anything. This is called connecting in parallel.
To check a battery: red probe on +, black on −, dial on DC volts (DCV). The display reads the voltage between them. To check if power reaches a board: black on ground, red on the supply pin — the reading tells you instantly whether power is present and correct.
┌───────[ circuit ]───────┐
│ │
(+) (−)
│ red ● ● black
└────────┤ METER ├────────┘ (probes ACROSS = parallel; nothing broken)
Because a voltmeter has very high internal resistance, it draws almost no current and barely disturbs the circuit — you can probe a live circuit's voltages freely.
AC vs DC
The dial distinguishes DCV (steady voltages — batteries, power rails, most electronics) from ACV (alternating voltages — mains, the inverter's AC output from L6). Picking the wrong one gives a meaningless reading, so match the mode to the signal: electronics are almost always DCV; wall mains and inverter output are ACV.
Why voltage-first is the instinct
When something doesn't work, the experienced first move is almost always: measure the voltage where power should be. No power → nothing else matters, and you've found the problem's neighbourhood in one reading. Power present but wrong → a different class of fault. This single, easy, non-intrusive measurement eliminates the most common failure (no/bad power) immediately — which is why voltage is the multimeter's headline skill.
The next slide covers the two other quick multimeter checks you'll reach for constantly — continuity and resistance — before Lesson 2 tackles current (and its famous trap).
To measure the VOLTAGE across a battery, you connect the multimeter:
Continuity & resistance: the quick checks
After voltage, two more multimeter modes earn their keep every single day: continuity and resistance. Both are done with the power off, and both answer questions voltage can't.
Continuity: the beep test
Continuity mode is a simple go/no-go check: are these two points electrically connected? The meter sends a tiny current and beeps if the resistance between the probes is very low (i.e., they're connected).
- Beep → connected (a good wire, a closed switch, a solid solder joint, or… an unwanted short).
- Silence → open (a broken wire, a cold solder joint, an open switch, or correctly not connected).
This is how you:
- Verify a wire or trace isn't broken — probe both ends; no beep means a break.
- Check a solder joint — beep to the pad it should connect to confirms the joint.
- Hunt for shorts — two points that beep but shouldn't be connected reveal a solder bridge or wiring error.
Continuity is fast, decisive, and one of the most useful things a multimeter does. Always do it with the circuit powered off — the meter needs to supply its own current, and live voltage corrupts the test.
Resistance: putting a number on it
Resistance mode (ohms, Ω) measures how much a component resists current — the actual value of a resistor (L1), or whether something is open (infinite, shown as "OL") or shorted (near 0Ω).
The ohmmeter works by pushing its own small known current through the component and measuring the resulting voltage. Two consequences follow, and they're the rules of resistance measurement:
- Power must be OFF. External voltage fights the meter's own current and ruins the reading (and can damage the meter).
- Isolate the component when accuracy matters. Other parts connected in parallel offer alternative paths, so the meter reads the combination, not your component. Lift one leg of the part, or measure out-of-circuit, for a true value.
When you'd use each
- "Is this resistor really 10kΩ?" → resistance.
- "Is this wire broken somewhere?" → continuity.
- "Are these two pins accidentally bridged?" → continuity.
- "Is this fuse blown?" → continuity (good fuse beeps; blown fuse is silent/OL).
The everyday trio
Voltage (live, in parallel), continuity (off, beep), and resistance (off, isolated) are the three checks you'll do most — and they already let you diagnose a huge fraction of real faults: is there power, is it connected, is the component the right value. The next lesson adds the fourth measurement — current — which is more intrusive and carries the multimeter's single most famous trap.