0
0
Embedded-cHow-ToBeginner · 3 min read

How to Use a Multimeter to Test a PCB: Simple Steps

To test a PCB with a multimeter, first set it to the correct mode like continuity or resistance. Then, place the probes on the PCB points you want to check to measure voltage, continuity, or resistance and verify the circuit works as expected.
📐

Syntax

Using a multimeter to test a PCB involves selecting the right mode and placing the probes correctly:

  • Set Mode: Choose Continuity to check if two points connect.
  • Set Mode: Choose Resistance (Ohms) to measure resistance between points.
  • Set Mode: Choose Voltage (Volts) to measure voltage at points.
  • Probe Placement: Touch the black probe to ground or reference point, and the red probe to the test point.
embedded_c
Multimeter Usage Pattern:
1. Turn dial to desired mode (Continuity, Resistance, Voltage).
2. Connect black probe to ground or common point.
3. Touch red probe to test point on PCB.
4. Read measurement on display.
💻

Example

This example shows how to test continuity between two points on a PCB using a multimeter:

embedded_c
1. Turn multimeter dial to <code>Continuity</code> mode (usually a diode symbol or sound wave).
2. Place black probe on one PCB pad.
3. Place red probe on the other PCB pad.
4. If the multimeter beeps or shows near zero resistance, the connection is good.
5. If no beep or high resistance, the connection is broken.
Output
Multimeter beeps and shows 0.2 Ω indicating good continuity.
⚠️

Common Pitfalls

  • Not setting the multimeter to the correct mode can give wrong readings.
  • Probes not touching the PCB pads firmly can cause false open circuits.
  • Testing powered circuits in resistance mode can damage the multimeter.
  • Ignoring polarity when measuring voltage can confuse results.
embedded_c
Wrong way:
- Measuring resistance on a powered PCB.
Right way:
- Always power off PCB before resistance or continuity tests.
📊

Quick Reference

Test TypeMultimeter ModeProbe PlacementExpected Result
ContinuityContinuity (diode symbol)Probes on two pointsBeep or near 0 Ω
ResistanceOhms (Ω)Probes on two pointsMeasured resistance value
VoltageVolts (V)Black on ground, red on test pointMeasured voltage value

Key Takeaways

Always set the multimeter to the correct mode before testing the PCB.
Use continuity mode to quickly check if two points are connected.
Power off the PCB before measuring resistance or continuity to avoid damage.
Place probes firmly on PCB pads for accurate readings.
Check voltage with correct polarity to understand circuit behavior.