When troubleshooting a circuit or sizing a power supply, the first question is always about the load. To answer it, you need to know that current is measured in Amperes (A), universally referred to as "amps." For smaller electronics and precision sensors, we step down to milliamps (mA) and microamps (µA).
Knowing the unit is only half the battle. Selecting the wrong unit range or inserting your test lead into the wrong multimeter jack is the fastest way to blow an internal fuse, damage your board, or get a reading so misleading it sends you down a two-hour debugging rabbit hole. This guide breaks down the exact units, the physical meter setup, and the expected numerical readings you should see on the bench.
The Core Units of Electrical Current
Current is the rate of electron flow through a conductor. One Ampere equals one Coulomb of charge passing a specific point per second. Here is how the units scale and where you will actually encounter them in the wild.
| Unit Name | Symbol | Multiplier | Typical Application |
|---|---|---|---|
| Ampere | A | 1 (Base Unit) | Mains appliances, motors, battery pack discharge, branch circuits. |
| Milliampere | mA | 1/1,000 (10^-3) | Arduino logic, LED strips, relays, standard microcontrollers under load. |
| Microampere | µA | 1/1,000,000 (10^-6) | Deep-sleep MCU modes, RTC backup circuits, biosensors, leakage current. |
Multimeter Setup: Dial, Jacks, and Range Selection
Before you touch a probe to a test point, your meter must be configured correctly. Using a professional-grade meter like the Fluke 87V or a Klein MM400 as our reference, here is the exact setup block.
- Black Lead: Always insert into the COM (Common) jack.
- Red Lead (High Current): Insert into the 10A (or 20A) jack if you expect the load to draw more than 200mA. This jack uses a heavy-duty shunt and is often unfused or protected by a high-breaking-capacity (HRC) ceramic fuse.
- Red Lead (Low Current): Insert into the mA/µA jack if you expect the load to draw less than 200mA. This jack contains a sensitive fast-blow glass or ceramic fuse (typically 400mA).
- Dial Position: Turn the dial to A with a straight line over it (for DC) or a wavy line (for AC). Do not use the mV setting.
- Range Selection: If your meter is manual-ranging, start at the highest range (10A) and step down. If auto-ranging, ensure the display shows the correct unit suffix (A, mA, or µA) before taking the reading.
Probe Placement and Test Point Strategy
Voltage is measured in parallel, but current must be measured in series. Your multimeter measures current by passing the circuit's electrons through an internal shunt resistor and calculating the voltage drop across it.
To measure current, you must physically break the circuit and make the meter part of the current path.
- DC Low Voltage (e.g., 12V LED strip): Disconnect the positive (+) wire from the power supply. Connect the red probe to the power supply's positive terminal, and the black probe to the disconnected wire going to the LED strip.
- Mains AC (e.g., 120V Space Heater): De-energize the circuit. Break the "Hot" (black) wire. Wire the meter in series with the Hot conductor. Note: For mains AC, breaking the circuit to insert test leads is highly dangerous and violates standard safety practices. Use a clamp meter instead.
Expected Readings: Good vs. Bad Values
A reading is only useful if you know what the number should be. Below is a reference table of common loads, their expected numerical current draw, and what fault conditions look like on the display.
| Device / Circuit | Nominal Voltage | Expected Current (Good) | Fault Reading (Bad) |
|---|---|---|---|
| 1500W Space Heater | 120V AC | 12.0A – 12.8A | 0.00A: Open thermal fuse. >15A: Shorted element. |
| 12V LED Strip (1 meter, 60 LEDs) | 12V DC | 0.8A – 1.2A | 0.00A: Broken trace. >2.0A: Solder bridge short. |
| Arduino Uno R3 (Idle, no shield) | 5V DC | 45mA – 55mA | >100mA: Shield short or bad regulator. <20mA: MCU in brownout. |
| ESP32 DevKit (Deep Sleep) | 3.3V DC | 10µA – 150µA | >5mA: USB-to-UART chip failing to sleep (leakage). |
Common Mistakes That Yield Misleading Readings
If your circuit is behaving erratically but your multimeter shows a "normal" current draw, you are likely falling victim to one of these measurement artifacts.
1. Burden Voltage and Brownouts
According to All About Circuits, every multimeter introduces a small resistance (the shunt) into the circuit. On the 10A range, this shunt is typically 0.01Ω. On the mA range, it can be 1.0Ω or higher. If you measure a 3.3V ESP32 drawing 150mA on the mA range, the meter drops 0.15V (1.0Ω × 0.15A). The ESP32 only sees 3.15V, which may trigger a brownout reset. The fix: Use the 10A range for active microcontrollers to minimize burden voltage, or use a dedicated current shunt with an oscilloscope.
2. Measuring PWM Signals on DC Ammeter Mode
If you are measuring the current draw of a motor driven by a 50% duty-cycle PWM signal, a standard DC ammeter will display the average current. If the motor draws 2A when ON and 0A when OFF, the meter reads 1A. However, your power supply and MOSFETs must be sized for the 2A peak, not the 1A average. Relying on the multimeter's average reading will lead to undersized components and thermal failure.
3. The "Phantom" 10A Reading
Many bench power supplies have a digital display that shows current. If your power supply reads 0.5A but your handheld multimeter in series reads 0.1A, trust the multimeter. Power supply displays often measure the total current including their own internal bleeder resistors and display backlights, whereas the multimeter only measures what actually reaches the load.
Decision Tree: Which Unit and Jack to Pick
Stop guessing which jack to use. Follow this decision path to select the correct unit, range, and physical setup for your specific test. This terminates in a concrete, safe measurement strategy.
| Condition / Load Type | Action Required | Concrete Pick / Setup |
|---|---|---|
| Mains AC Branch Circuit (>50V AC) | Do NOT break the circuit. Use a non-contact clamp. | Fluke 376 FC True-RMS Clamp Meter. Clamp around the single Hot wire only. |
| DC Load > 200mA (Motors, Heaters, Strips) | Break circuit, use high-current unfused/HRC path. | Red probe in 10A jack. Dial to A (DC). Expected resolution: 0.01A. |
| DC Load < 200mA (Sensors, standard logic) | Break circuit, use fused low-current path. | Red probe in mA/µA jack. Dial to mA (DC). Expected resolution: 0.01mA. |
| Ultra-Low Sleep Current (<1mA) | Requires high-sensitivity shunt to avoid noise. | Red probe in µA jack (or use an external EEVblog uCurrent Gold adapter into the mV jack). |
The Default Recommendation
If you are testing an unknown DC board and have no datasheet to reference, execute this exact sequence: Plug the red lead into the 10A jack, set the dial to Amps DC, and power the circuit. If the display reads below 0.200 (200mA), power down, move the red lead to the mA/µA jack, switch the dial to mA, and re-test. This guarantees you will not blow the delicate 400mA internal fuse on your first test, while still giving you the resolution needed to verify the circuit's health once the load is confirmed safe.






