0
0
Embedded-cHow-ToBeginner · 4 min read

How to Find Short Circuit on PCB: Step-by-Step Guide

To find a short circuit on a PCB, start by visually inspecting the board for solder bridges or damaged components. Then use a multimeter in continuity mode to test between power and ground traces to locate the exact short.
📐

Syntax

Using a multimeter to find a short circuit involves these steps:

  • Continuity Mode: Set the multimeter to continuity or resistance mode.
  • Test Points: Place probes on power and ground traces.
  • Reading: A beep or low resistance indicates a short.
pseudo
Multimeter.setMode('continuity');
Multimeter.placeProbe('power_trace');
Multimeter.placeProbe('ground_trace');
if (Multimeter.read() < threshold) {
  alert('Short circuit detected');
}
Output
Short circuit detected
💻

Example

This example shows how to use a multimeter to find a short circuit between power and ground on a PCB.

steps
1. Turn off power to the PCB.
2. Set your multimeter to continuity mode.
3. Touch one probe to the power trace.
4. Touch the other probe to the ground trace.
5. Listen for a beep or check for low resistance.
6. If beep or low resistance, move probes along traces to narrow down the short location.
Output
Beep sound or resistance close to 0 ohms indicates a short circuit.
⚠️

Common Pitfalls

Common mistakes when finding shorts on PCBs include:

  • Testing with power on, which can damage the multimeter or PCB.
  • Ignoring visual inspection before testing, missing obvious solder bridges.
  • Not isolating sections of the PCB, making it hard to locate the exact short.

Always power off the board and check visually first.

pseudo
/* Wrong way: Testing with power on */
Multimeter.setMode('continuity');
Power.on();
Multimeter.placeProbe('power_trace');
Multimeter.placeProbe('ground_trace');
// This can damage equipment

/* Right way: Power off before testing */
Power.off();
Multimeter.setMode('continuity');
Multimeter.placeProbe('power_trace');
Multimeter.placeProbe('ground_trace');
// Safe and effective
📊

Quick Reference

StepActionTip
1Power off the PCBPrevents damage to tools and board
2Visual inspectionLook for solder bridges or damaged parts
3Set multimeter to continuityUse beep mode for easy detection
4Test between power and groundBeep or low resistance means short
5Narrow down locationMove probes along traces to find exact spot

Key Takeaways

Always power off the PCB before testing for shorts to avoid damage.
Use a multimeter in continuity mode to detect low resistance between power and ground.
Start with a careful visual inspection to spot obvious shorts like solder bridges.
Move probes along the PCB traces to pinpoint the exact location of the short.
Isolate PCB sections if needed to simplify troubleshooting.