Frequency is the number of complete alternating current (AC) cycles or digital pulses that occur in one second, measured in Hertz (Hz). In a real circuit, frequency dictates the rotational speed of AC motors, the reactive impedance of inductors and capacitors, and the switching losses in power supplies. Beginners most commonly confuse frequency with amplitude (the voltage level or peak-to-peak swing) or, in digital square waves, with duty cycle (the percentage of time the signal remains high versus low).
The Core Metrics: What Frequency Actually Changes
When you change the frequency of a signal, you are not just changing how fast a waveform repeats; you are fundamentally altering how passive components react to the energy. In DC circuits, a resistor is just a resistor. But in AC and pulsed circuits, inductors and capacitors exhibit reactance, which scales directly with or inversely against frequency.
To understand what frequency changes in a physical installation, consider this worked numeric example using a 15 mH choke inductor commonly found in audio crossover networks or EMI filters:
- At 60 Hz (Mains Power): The inductive reactance ($X_L = 2\pi f L$) is $2 \times \pi \times 60 \times 0.015 = \mathbf{5.65 \, \Omega}$. At this frequency, the inductor barely impedes the current.
- At 2,000 Hz (Audio Crossover): The reactance jumps to $2 \times \pi \times 2000 \times 0.015 = \mathbf{188.5 \, \Omega}$. The exact same physical component now acts as a massive roadblock to the signal.
This is why verifying frequency is critical. If a variable frequency drive (VFD) outputs the wrong switching frequency, or if your microcontroller's PWM timer is misconfigured, your inductors will either saturate and overheat or choke the circuit entirely.
| Application Domain | Standard Frequency Range | Primary Circuit Impact | Minimum Tool Bandwidth |
|---|---|---|---|
| Mains Power (Grid) | 50 Hz or 60 Hz | Motor speed, transformer core flux, lighting flicker | True-RMS DMM with Hz function (e.g., Fluke 87V) |
| Audio / Analog Signals | 20 Hz to 20 kHz | Signal fidelity, active filter cutoff points | Oscilloscope (>100 kHz sample rate) |
| Motor PWM / VFDs | 1 kHz to 20 kHz | MOSFET/IGBT switching losses, acoustic motor noise | Digital Scope (>50 MHz bandwidth) |
| Switch-Mode Power Supplies | 50 kHz to 2 MHz | Inductor physical sizing, EMI radiation footprint | High-bandwidth scope + HV differential probe |
How to Check Frequency: Tools and Step-by-Step Measurement
Checking frequency requires converting a time-domain event into a readable metric. The tool you choose depends on whether you are measuring a clean sine wave (mains) or a noisy, fast-edged square wave (PWM).
Method 1: Using a Digital Multimeter (DMM) for Mains and Low-Frequency AC
High-end bench and field multimeters, like the Fluke 87V or Brymen BM869s, include a dedicated Hertz (Hz) function. This is ideal for checking wall outlets, generators, and low-frequency audio signals.
- Safety First: If measuring mains voltage (>50V AC), ensure your meter is rated CAT III or CAT IV and your test leads are fully insulated. Never measure grid frequency on the current (Amps) setting.
- Set the Dial: Turn the dial to the AC Voltage ($V\sim$) setting, then press the yellow Hz button on the meter face. The display will toggle to show frequency instead of RMS voltage.
- Probe the Circuit: Connect the black lead to neutral/ground and the red lead to the hot conductor. The meter's internal comparator will count the zero-crossings of the sine wave and display the result (e.g., 60.01 Hz).
Method 2: Using an Oscilloscope for PWM and High-Speed Digital Signals
Multimeters average out fast digital pulses and will give garbage readings on microcontroller PWM pins. For these, you need an oscilloscope like the Siglent SDS1202X-E or Rigol DS1054Z.
The Math: 4 divisions × 500 µs/div = 2,000 µs (or 2 ms) per cycle.
Frequency: $f = 1 / 0.002$ seconds = 500 Hz.
The Fix: Your code intended 5 kHz, but the hardware is outputting 500 Hz. In the Arduino-ESP32 core, this usually happens if the
ledcSetup(channel, freq, resolution) function is passed a prescaler value that divides the 80 MHz APB clock incorrectly, or if the timer resolution (e.g., 10-bit vs 8-bit) conflicts with the requested frequency ceiling. You must adjust the resolution parameter down to achieve the higher 5 kHz target.
Where You Meet This in Practice: Mains, Motors, and Microcontrollers
Understanding how to check frequency is useless if you do not know what to do with the data once you have it. Here is where frequency verification prevents catastrophic hardware failures in the field and on the bench.
1. Mains Power and Generator Paralleling
Grid frequency in North America is nominally 60 Hz (acceptable range 59.5 to 60.5 Hz under normal load). In Europe and much of Asia, it is 50 Hz. If you import a 50 Hz industrial air compressor and plug it into a 60 Hz supply without checking the motor nameplate, the motor will run 20% faster. This increases centrifugal stress on the rotor and can cause the driven load to over-torque. Conversely, running a 60 Hz motor on 50 Hz mains reduces the cooling fan speed while maintaining core flux, often leading to thermal burnout within hours. Always verify the source frequency with a DMM before energizing imported heavy machinery.
2. Variable Frequency Drives (VFDs)
VFDs control 3-phase AC motor speed by varying both the voltage and the frequency of the output waveform (maintaining a constant V/Hz ratio). If you are commissioning a VFD for a conveyor belt, you must use an oscilloscope with an isolated differential probe to check the output frequency at the motor terminals. Standard multimeters will be destroyed by the high $dv/dt$ (voltage spike) transients generated by the VFD's IGBT switching.
3. Microcontroller PWM and LED Dimming
When using an Arduino or ESP32 to dim high-power LEDs via PWM, the frequency dictates whether the human eye will perceive flicker. A frequency of 200 Hz will cause visible strobing on smartphone cameras and induce eye strain. By checking the frequency on a scope and bumping the timer configuration to 2,000 Hz (2 kHz) or higher, you push the flicker well beyond the fusion threshold of human vision, resulting in smooth, imperceptible dimming.
Troubleshooting and Common Frequency Pitfalls
Why does my multimeter read exactly double the expected frequency?
This is a classic triggering error. If you are measuring a modified sine wave (like from a cheap UPS or portable power station) or a highly distorted waveform, the voltage crosses the zero-point multiple times per cycle due to harmonic noise. The multimeter's zero-crossing detector counts every intersection, resulting in a reading of 120 Hz instead of 60 Hz. Switch to an oscilloscope to visually verify the fundamental waveform shape.
What is the difference between frequency and duty cycle?
Frequency is how many times the signal turns on and off per second (Hz). Duty cycle is the percentage of that single cycle that the signal spends in the "ON" (high voltage) state. You can have a 10 kHz signal with a 10% duty cycle (a very narrow pulse repeating rapidly) or a 10 kHz signal with a 90% duty cycle (a wide pulse repeating at the exact same rate). Frequency controls how often it happens; duty cycle controls how long it stays on per event.
Can I check RF frequency (like 2.4 GHz WiFi) with a standard oscilloscope?
No. A standard hobbyist oscilloscope with a 100 MHz bandwidth will completely filter out and attenuate a 2.4 GHz signal, showing you a flat line. To check RF frequencies, you need a Spectrum Analyzer (like a tinySA Ultra or a Rigol DSA815) which measures signal amplitude across the frequency domain rather than the time domain. For more on AC fundamentals and waveform theory, refer to the All About Circuits AC primer or the Fluke guide on frequency measurement.






