A Wheatstone bridge is a circuit configuration used to measure an unknown electrical resistance by balancing two legs of a bridge circuit, one leg of which includes the unknown component. While modern digital multimeters can measure resistance directly, they struggle with the microscopic resistance shifts generated by physical sensors. In a real circuit or installation, a Wheatstone bridge changes imperceptible resistance shifts—often just fractions of an ohm—into a proportional, measurable differential voltage. This translation is what allows microcontrollers and precision amplifiers to read physical phenomena like weight, strain, and temperature with high accuracy.

The Core Function: Translating Resistance to Voltage

To understand the bridge, think of a balanced physical scale. If you place a known 10kg calibration weight on one side and an unknown rock on the other, you adjust the rock until the scale is perfectly level. The Wheatstone bridge does this electrically with voltage instead of physical weight. By comparing a known resistance leg against an unknown resistance leg, the circuit nulls out the baseline voltage, leaving only the tiny differential voltage caused by the sensor's physical reaction.

Bench Insight: The secret to a bridge circuit isn't just measuring resistance; it's common-mode noise rejection. Because you measure the difference between two mid-point nodes, any electrical noise (like 50Hz/60Hz mains hum) that hits both legs equally is canceled out. This is why bridges are mandatory in high-noise industrial environments.

Worked Numeric Example: Calculating the Sensor Output

Let's look at a real-world scenario: a 350Ω strain gauge bonded to a steel beam. When the beam flexes, the gauge's resistance changes slightly. We will use a 5.0V DC excitation source ($V_{ex}$) and three precision 350Ω reference resistors ($R_1$, $R_2$, $R_3$). The strain gauge is our unknown resistor ($R_x$).

Under no load, $R_x$ is exactly 350Ω. The bridge is perfectly balanced, and the differential output voltage ($V_{out}$) is 0V. Now, we apply a heavy load to the beam, stretching the strain gauge and increasing its resistance to 350.5Ω. Here is how we calculate the new output voltage.

The bridge consists of two parallel voltage dividers. We calculate the voltage at the midpoint of each leg ($V_A$ and $V_B$):

  • Leg A (Reference Leg): $V_A = V_{ex} \times [R_2 / (R_1 + R_2)]$
    $V_A = 5.0V \times [350 / (350 + 350)] = 5.0V \times 0.5 = 2.500V
  • Leg B (Sensor Leg): $V_B = V_{ex} \times [R_x / (R_3 + R_x)]$
    $V_B = 5.0V \times [350.5 / (350 + 350.5)] = 5.0V \times [350.5 / 700.5] \approx 2.50178V

The differential output is the difference between these two midpoints:

$V_{out} = V_B - V_A = 2.50178V - 2.500V = 1.78 mV

That 0.5Ω physical stretch resulted in a 1.78 mV electrical signal. While 1.78 mV is too small for a standard Arduino ADC to read accurately on its own, feeding this differential signal into an instrumentation amplifier (like the Texas Instruments INA125) or a dedicated 24-bit ADC (like the HX711) scales it up to a clean, readable digital value. For a deeper mathematical breakdown of bridge balancing, the All About Circuits DC textbook chapter provides excellent foundational theory.

Where You Meet This in Practice

You rarely build a discrete Wheatstone bridge from scratch on a breadbench unless you are calibrating lab equipment. Instead, you interact with them as integrated subsystems in commercial sensors:

  • Load Cells (Weight Measurement): From digital kitchen scales to 40-ton truck weigh stations, load cells are essentially aluminum blocks with four strain gauges wired in a full-bridge configuration. The SparkFun HX711 hookup guide is the standard reference for interfacing these bridges with microcontrollers.
  • RTDs (Temperature Sensing): Platinum resistance temperature detectors (like the PT100 or PT1000) change resistance predictably with temperature. A bridge circuit converts the PT100's 0.385Ω/°C shift into a voltage that a PLC can read to control industrial ovens.
  • Pressure Transducers: Piezoresistive pressure sensors used in HVAC systems and automotive MAP (Manifold Absolute Pressure) sensors use a silicon diaphragm with integrated bridge resistors to measure air or fluid pressure.

Common Confusions: Wheatstone Bridge vs. Simple Voltage Divider

People commonly confuse the Wheatstone bridge with a simple voltage divider, or assume they are interchangeable. A Wheatstone bridge is essentially two parallel voltage dividers, but the way you extract the data is fundamentally different. Another common confusion is mixing up DC resistance bridges with AC impedance bridges (like the Maxwell or Hay bridges), which are used to measure capacitance and inductance, not just DC resistance.

Feature Simple Voltage Divider Wheatstone Bridge
Output Type Single-ended (referenced to ground) Differential (measured between two floating nodes)
Noise Rejection Poor (picks up ground loops and EMI) Excellent (rejects common-mode noise)
Component Count 2 Resistors 4 Resistors (or sensor elements)
Primary Use Case Stepping down voltage for biasing or level shifting Precision measurement of tiny resistance changes
Excitation Sensitivity Output scales linearly with supply noise Ratiometric (supply noise cancels out if both legs are affected)

As detailed in standard electronics tutorials on bridge networks, the ratiometric nature of the bridge means that if your 5V excitation source sags to 4.9V, the ratio of the voltage divider legs remains identical, keeping your measurement accurate despite power supply imperfections.

Frequently Asked Questions

What is a Wheatstone bridge used for in modern electronics?

In modern electronics, the Wheatstone bridge is primarily used as the front-end transduction layer for physical sensors. It is the underlying circuit inside load cells, strain gauges, piezoresistive pressure sensors, and RTD temperature probes. It converts the physical deformation or temperature change of a material into a differential millivolt signal that can be amplified and digitized by an ADC.

Why do we use a Wheatstone bridge instead of a standard multimeter?

A standard digital multimeter (DMM) injects a known current and measures the resulting voltage to calculate resistance. While great for checking a 1kΩ resistor, a DMM lacks the resolution and stability to detect a 0.05Ω shift in a 350Ω strain gauge. Furthermore, a DMM uses a single-ended measurement referenced to ground, making it highly susceptible to electromagnetic interference (EMI) over long cable runs. The bridge's differential output rejects this noise, allowing you to run sensor cables across a noisy factory floor without corrupting the data.

Can a Wheatstone bridge measure capacitance or inductance?

A standard DC Wheatstone bridge only measures resistance. However, the topology of the bridge is used in AC circuits to measure reactive components. When adapted with an AC excitation source and known capacitors/inductors in the reference legs, these are called impedance bridges (e.g., Schering bridge for capacitance, Maxwell bridge for inductance). They balance both the magnitude and the phase angle of the AC waveform to find the unknown component value.

What happens if the Wheatstone bridge is unbalanced?

An unbalanced bridge simply means the ratio of the resistors in the two legs is not equal ($R_1/R_2 \neq R_3/R_x$). In sensor applications, this is actually the desired state. The physical parameter you are measuring (weight, heat, pressure) intentionally unbalances the bridge. The degree of unbalance is directly proportional to the differential output voltage, which your microcontroller calculates to determine the physical value. A perfectly balanced bridge outputs 0V, which usually represents the 'tare' or baseline zero state of your sensor.