A multimeter gives you a single number—an RMS average or a DC mean. But when you ask, what does an oscilloscope do, the answer is that it graphs voltage (Y-axis) against time (X-axis). While your DMM tells you a 5V rail is sitting at 4.9V, an oscilloscope reveals the 200mV of high-frequency switching ripple hiding on top of that DC offset. It captures transients, measures exact pulse widths, and exposes the noise that causes microcontrollers to brownout or communication buses to drop packets.
Getting accurate data requires more than just clipping a probe onto a wire. Probe capacitance, ground lead inductance, and attenuation mismatches can completely distort the signal you are trying to measure. Below is a practical bench guide to configuring your scope, interpreting the readings, and staying safe when measuring high-voltage circuits.
Scope Configuration Block & Probe Placement
Unlike a multimeter where you turn a dial and plug in banana jacks, an oscilloscope requires you to match the physical probe hardware to the software menu settings. If these do not match, your numeric readings will be off by a factor of 10 or more.
Scope Setup Block: Standard 5V Logic / PWM Measurement
- Probe Attenuation (Hardware): Switch on the probe body set to 10X. (10X reduces the signal by a factor of 10, protecting the scope input and lowering the capacitive load on your circuit from ~100pF down to ~15pF).
- Channel Menu (Software): Set Channel 1 Probe Attenuation to 10X to match the hardware.
- Coupling: DC (shows both the DC offset and the AC ripple). Use AC coupling only if you need to zoom in on tiny ripple riding on a large DC voltage.
- Volts/Div (Range): 1.00V (places a 5V signal nicely in the center 4 divisions of the screen).
- Timebase (Sec/Div): 200µs (ideal for viewing a few cycles of a 1kHz to 25kHz PWM signal).
- Trigger: Edge, Rising, Source CH1. Set the trigger level to 2.50V (50% of the expected 5V amplitude) to lock the waveform on screen.
Probe Placement Technique
Always connect the probe ground clip to the closest possible local ground on the circuit board, not the power supply ground three feet away. Long ground wires act as loop antennas, picking up radiated EMI from switching regulators. For high-frequency signals (above 5MHz), remove the standard alligator ground clip and use the probe ground spring. The spring wraps around the probe tip barrel, reducing ground inductance to a fraction of a nanohenry and eliminating the false "ringing" you often see on fast MOSFET switching edges.
Expected Readings: Good vs. Bad Signatures
Knowing what the waveform should look like is half the battle. The table below provides numeric baselines for common bench measurements, along with the fault signatures that indicate failing components or bad layout.
| Signal / Test Point | Expected Numeric Reading (Good) | Bad Reading / Fault Signature | Common Setup Mistake |
|---|---|---|---|
| 5V DC Buck Converter Rail | 5.00V DC mean; <30mV peak-to-peak (p-p) high-freq ripple. | >150mV p-p ripple, or low-frequency sawtooth wave (indicates dried-out output capacitors or failing feedback loop). | Using AC coupling with too much Volts/Div, clipping the ripple off-screen. |
| 3.3V I2C SDA Line | 0V to 3.3V. Sharp vertical fall (pulled low by MOSFET), slower exponential RC rise (pulled high by resistor). | Signal never reaches 0V (stuck at 1.2V). Indicates pull-up resistor is too small, or a device is shorting the bus. | Trigger set to "Auto" instead of "Normal", causing the scope to display random noise when the bus is idle. |
| 1kHz PWM (Fan Control) | 0V to 5.0V square wave. 50% duty cycle = 500µs High, 500µs Low. | Rounded tops, slow rise/fall times (>2µs). Indicates excessive capacitive load on the GPIO pin or missing gate driver. | Using a 1X probe instead of 10X, adding 100pF of capacitance to the circuit and artificially slowing the edge. |
| 120V AC Mains (Inverter) | 170V peak (340V p-p), 60Hz pure sine wave. THD <3%. | Clipped/flat peaks, or stepped "modified sine" wave. High harmonic distortion will overheat AC motors. | Using a standard CAT II passive probe on a CAT III panel without a differential probe (Safety Hazard). |
CAT Ratings & Mains Measurement Safety
When measuring anything connected to the AC mains grid, you must understand IEC 61010 Measurement Categories (CAT ratings). A standard 100MHz passive probe (like the Tektronix P6139A) is typically rated for CAT II 300V or CAT II 600V. CAT II covers single-phase receptacles and appliances.
However, if you are measuring a hardwired 240V split-phase distribution panel, a solar inverter feeder, or industrial 3-phase equipment, you are in CAT III or CAT IV territory. In these environments, a transient voltage spike can reach several thousand volts. A standard passive probe's internal divider resistors can arc over, sending full mains voltage directly into the oscilloscope's BNC connector and destroying the instrument—or electrocuting you.
A dangerous and persistent myth in DIY electronics is that you can measure mains-referenced high-side signals by wrapping tape around the oscilloscope's earth-ground prong or using a cheater plug to "float" the scope. Do not do this. The BNC outer shell is tied directly to earth ground. If you connect the probe ground clip to a live 120V/240V line, the moment you plug the scope into the wall, you create a dead short through the scope's power cord, resulting in an explosive arc flash.
The Fix: To safely measure high-side mains signals or CAT III/IV circuits, use an active high-voltage differential probe (such as the Micsig DP10013 or Tektronix P5200A). Differential probes measure the voltage difference between two non-grounded points and output a safely isolated, scaled-down signal to the scope's BNC. For comprehensive safety standards, refer to the Fluke guide on understanding measurement categories and Tektronix Oscilloscope Fundamentals.
Mistakes That Give Misleading Readings
Even with a perfectly functioning circuit, incorrect scope configuration will yield data that sends you down the wrong troubleshooting path. Watch out for these three common bench errors:
1. The 1X / 10X Attenuation Mismatch
This is the most common reason a hobbyist thinks their 5V Arduino is outputting 0.5V. The physical switch on the probe is set to 10X (attenuating the signal by 10 before it hits the BNC), but the oscilloscope's channel menu is set to 1X. The scope assumes the raw signal is 0.5V and displays it as such. Always verify that the hardware switch and the software menu match before taking numeric measurements.
2. Ground Clip Inductance Ringing
You are probing the drain of a MOSFET switching at 100kHz. The scope shows a massive 20V spike ringing on every edge, and you panic, thinking your snubber diode has failed. In reality, the 3-inch alligator ground clip on your probe has about 200nH of parasitic inductance. When combined with the probe's input capacitance, it forms an LC tank circuit that rings at high frequencies. Switch to the ground spring, and you will likely see that the actual circuit spike is only 2V.
3. Accidental Bandwidth Limiting
Most modern digital scopes have a "20MHz BW Limit" toggle in the channel menu. This inserts a low-pass hardware filter to clean up high-frequency noise when measuring slow analog sensors or audio. If you accidentally leave this enabled while trying to measure a 16MHz SPI clock or a fast UART edge, your square waves will look like rounded triangle waves, and your rise-time measurements will be completely invalid. Always ensure the BW limit is OFF when debugging digital communication buses.






