The unit of resistance is the ohm (Ω), defined as the electrical resistance between two points of a conductor when a constant potential difference of one volt produces a current of one ampere. In a real circuit or installation, inserting a component measured in ohms changes the current flow and creates a proportional voltage drop, acting as the primary mechanism to protect sensitive semiconductors, scale analog signals, and divide logic levels. While the math behind it is straightforward, selecting the right physical component requires understanding power dissipation, standard value series, and tolerance.
The Ohm in Action: A Worked Numeric Example
To see how the unit of resistance dictates circuit behavior, let’s calculate the exact current-limiting resistor needed for a standard 5mm red LED driven by a 5V Arduino Uno GPIO pin.
First, we use Ohm’s Law ($R = V / I$) to find the required resistance. The voltage that the resistor must drop is the difference between the source and the LED’s forward voltage:
$V_{drop} = 5.0V - 2.1V = 2.9V$
$R = 2.9V / 0.020A = 145Ω$
Because 145Ω is not a standard manufacturing value, we look to the E12/E24 standard resistor series and round up to the nearest available value to keep the current safely below the LED’s 20mA maximum. The closest standard E12 value is 150Ω.
Next, we must calculate the power dissipated as heat to select the correct physical wattage rating:
$P = I^2 \times R = (0.020)^2 \times 150 = 0.06 \text{ Watts}$
What People Commonly Confuse With the Unit of Resistance
When reading datasheets or troubleshooting, hobbyists frequently mix up the ohm with two related but distinct electrical concepts.
Resistance vs. Resistivity
Resistance (Ω) is a property of a specific, physical object (like a 10-inch piece of 18 AWG copper wire or a specific carbon film component). Resistivity (Ω·m) is an intrinsic material property. Copper has a fixed resistivity at a given temperature, but the actual resistance of a copper wire changes depending on its length and cross-sectional area. You buy a component based on its resistance; you select a wire material based on its resistivity.
The second major confusion is between DC resistance and AC impedance. While both are measured in ohms, impedance ($Z$) is a complex number that includes both resistance (which dissipates power as heat) and reactance (which stores energy in magnetic or electric fields, as seen in inductors and capacitors). If you measure a motor winding with a multimeter, you are reading its DC resistance. When that motor runs on AC, its impedance will be significantly higher due to inductive reactance. For authoritative definitions on how these units map to the SI system, refer to the NIST guide on SI base and derived units.
Where You Meet This Unit of Resistance in Practice
Beyond simple LED limiting, the ohm is the foundational unit for several critical circuit topologies you will encounter in embedded systems and home wiring.
- I2C Pull-Up Resistors: The I2C communication bus uses open-drain outputs, meaning devices can only pull the line low (to ground). To return the line to a HIGH state, a pull-up resistor (typically 4.7kΩ for 100kHz standard mode) connects the data lines to VCC.
- Current Sensing Shunts: To measure high currents without a hall-effect sensor, you pass the load through a very low-value precision resistor. For example, the popular INA219 breakout board uses a 0.1Ω shunt resistor. At 1A of current, it drops exactly 100mV, which the internal ADC reads to calculate the current.
- Voltage Dividers for ADC Scaling: Microcontrollers like the ESP32 have ADC pins rated for a maximum of ~1.1V to 3.3V. To measure a 12V battery, you use a high-ohm voltage divider (e.g., 100kΩ and 10kΩ) to scale the 12V down to a safe ~1.09V while minimizing parasitic drain on the battery.
- Grounding Electrode Systems: In mains electrical work, the National Electrical Code (NEC) requires a grounding electrode system to have a resistance to earth of 25 ohms or less. If a single ground rod measures higher than 25Ω with a fall-of-potential tester, you must bond a second rod.
Decision Tree: Selecting the Exact Resistor for Your Build
Knowing the target ohm value is only step one. You must also select the tolerance, package, and material. Use this decision matrix to terminate your design process with a concrete part number.
| Application | Target Value | Power Rating | Tolerance & Material | Concrete Part Pick |
|---|---|---|---|---|
| General GPIO Current Limiting (LEDs, Relays) | 220Ω | 1/4W (250mW) | 5% Carbon Film | Yageo CFR-25JB-52-220R |
| I2C / SPI Pull-Up Networks | 4.7kΩ | 1/10W (100mW) | 1% Thick Film (0603 SMD) | Panasonic ERJ-6ENF4702V |
| Precision ADC Voltage Divider | 10kΩ | 1/16W (62.5mW) | 0.1% Thin Film (0603 SMD) | Susumu RG1608P-103-B-T5 |
| High-Current Shunt Sensing | 0.01Ω | 2W+ | 1% Metal Strip | Vishay WSL2512R0100FEA |
Frequently Asked Questions About Measuring Ohms
Why does my multimeter display "OL" when I try to measure a resistor?
"OL" stands for Over Limit (or Open Loop). This means the resistance is higher than the maximum range your meter can read on the currently selected scale. If you are measuring a 1MΩ resistor but your meter is set to the 20kΩ range, it will read OL. Switch to a higher range or enable auto-ranging.
Can I measure the unit of resistance of a component while it is still soldered to the board?
Generally, no. Measuring resistance requires the multimeter to inject a small known current and measure the resulting voltage drop. If the component is in-circuit, that test current will flow through parallel paths (other traces, semiconductors, and power rails), giving you a falsely low reading. For an accurate measurement of the true ohm value, you must desolder at least one leg of the component to isolate it from the rest of the circuit.
How does temperature affect the ohm value of a resistor?
Every resistor has a Temperature Coefficient of Resistance (TCR), measured in parts per million per degree Celsius (ppm/°C). A standard carbon film resistor might have a TCR of ±500 ppm/°C, meaning its value can drift significantly if it gets hot. If you are building a precision analog sensor circuit where thermal drift will ruin your ADC readings, you must specify thin-film resistors with a TCR of ±25 ppm/°C or better, as detailed in standard DC circuit theory references.






