The Core Concept and Common Confusions
A Wheatstone bridge is a four-resistor circuit used to measure an unknown electrical resistance by balancing two legs of a bridge circuit until the voltage difference between them is zero. What this topology changes in a real circuit or installation is the ability to extract microvolt-level signals from passive sensors while actively rejecting power supply noise, ground loops, and temperature drift. Hobbyists and junior engineers commonly confuse the bridge with a simple voltage divider. While a standard voltage divider yields a single-ended voltage referenced to ground that drifts proportionally with the supply rail, a bridge outputs a differential voltage. Because both legs of the bridge are fed by the same excitation source, any ripple or sag in that supply voltage affects both legs equally, canceling out the error when you measure the difference between them.
The Math: A Worked Numeric Example
To understand the sensitivity, let us look at a real-world quarter-bridge strain gauge setup. We will use a standard 350Ω foil strain gauge (like the TAL220 50kg load cell) bonded to a metal beam.
In our circuit, we have four resistors forming the bridge:
- R1, R2, R3: Precision 350Ω resistors (0.1% tolerance, 10ppm/°C tempco)
- Rx: The active strain gauge, nominally 350Ω
- Vex (Excitation Voltage): 5.000V DC
When the beam is unloaded, Rx is exactly 350Ω. The bridge is perfectly balanced, and the differential output (Vout) is 0.000 mV. Now, we apply a physical load that stretches the gauge, increasing its resistance by a tiny fraction to 350.5Ω (a ΔR of +0.5Ω).
Using the standard quarter-bridge approximation formula for small resistance changes:
Vout ≈ (Vex / 4) × (ΔR / R)
Plugging in our real values:
- Vout ≈ (5.000V / 4) × (0.5Ω / 350Ω)
- Vout ≈ 1.25V × 0.001428
- Vout ≈ 1.785 mV
This 1.785 mV signal is incredibly small. If you try to read this directly with an Arduino Uno's 10-bit ADC (which has a resolution of about 4.88 mV per step at a 5V reference), the signal is entirely invisible—it registers as zero. This is why the bridge topology is almost never used alone; it requires an instrumentation amplifier to boost that 1.785 mV differential signal up to a usable 0-5V range while rejecting the 2.5V common-mode voltage sitting on both nodes.
Where You Meet This in Practice
You will rarely build a discrete four-resistor bridge on a breadboard unless you are characterizing a custom sensor. In modern electronics, you meet this topology embedded inside packaged transducers and evaluation modules.
1. Load Cells and Force Sensors
Almost every digital scale, from $15 kitchen scales to $10,000 industrial hopper weighers, uses a full Wheatstone bridge. A full-bridge load cell has four active strain gauges wired together internally. Two gauges experience tension while two experience compression when loaded, quadrupling the output signal compared to our quarter-bridge example above and providing built-in temperature compensation.
2. RTD Temperature Sensing
Resistance Temperature Detectors (like PT100 or PT1000 sensors) rely on the predictable resistance change of platinum wire. Because the resistance change is relatively linear but small, an RTD is typically placed as the unknown resistor (Rx) in a bridge circuit. For high-accuracy industrial applications, a 3-wire or 4-wire bridge configuration is used to cancel out the resistance of the copper lead wires running from the sensor to the control panel.
3. Gas and Chemical Sensors
MOX (Metal Oxide) gas sensors, such as the Figaro TGS series used for detecting methane or carbon monoxide, change resistance based on gas concentration. These are almost universally wired in a simple half-bridge or voltage divider configuration, though precision air-quality monitors will use a driven bridge to maintain a constant sensor temperature and improve baseline stability.
Decision Tree: Which Bridge and Amplifier to Pick
Choosing the right interface IC depends entirely on your sensor type, required resolution, and budget. Use this decision path to terminate on a specific part number for your next PCB or breadboard build.
| If Your Sensor Is... | And Your Constraint Is... | Then Pick This Configuration... | Concrete IC / Module Pick |
|---|---|---|---|
| Full-Bridge Load Cell (Weight/Force) | Cost-sensitive, 24-bit resolution needed for scales | Integrated PGA + 24-bit Sigma-Delta ADC | Avia HX711 (via SparkFun breakout) |
| Full-Bridge Load Cell | High speed (>100Hz), industrial noise environment | Precision Instrumentation Amp + External SAR ADC | TI INA128 + ADS1115 |
| PT100 / PT1000 RTD (Temperature) | High accuracy (±0.1°C), 3-wire lead compensation | Dedicated RTD-to-Digital Converter (handles bridge & excitation) | Analog Devices MAX31865 |
| Custom Quarter-Bridge (LDR, Thermistor) | Low power, battery-operated IoT node | Low-offset chopper amp feeding MCU internal ADC | TI INA333 (35µV max offset) |
Practical Wiring and Noise Rejection
The theoretical perfection of the Wheatstone bridge falls apart quickly if you ignore physical wiring parasitics. A 1.785 mV signal is easily swamped by 60Hz mains hum or thermocouple effects at your connectors.
Twisted Pair and Shielding
Never run bridge output wires (Signal+ and Signal-) as separate, untethered wires. They must be a tightly twisted pair. This ensures that any external electromagnetic interference induces the exact same noise voltage onto both wires. Because your instrumentation amplifier only measures the difference between the wires (Common-Mode Rejection Ratio, or CMRR), the noise is mathematically subtracted away. For environments with variable frequency drives (VFDs) or heavy contactor switching, use a shielded twisted pair (STP) with the shield grounded at the amplifier end only to prevent ground loops.
The Thermocouple Effect at Connectors
When you mate a copper wire to a brass terminal block, you inadvertently create a weak thermocouple. If one side of your terminal block is near a hot power resistor and the other is in free air, the temperature gradient will generate microvolts of DC offset that the bridge amplifier cannot distinguish from your sensor signal. Keep your bridge connections physically close together and away from heat sources.
Frequently Asked Questions
Can I use AC excitation for a Wheatstone bridge?
Yes, and it is highly recommended for eliminating 1/f noise and DC drift in high-precision laboratory measurements. By driving the bridge with a 1kHz to 10kHz AC sine wave, you can use AC-coupled amplifiers and synchronous demodulation (lock-in amplification) to extract the signal. However, for 95% of DIY and industrial microcontroller applications, a clean, low-noise DC excitation (like the output of an LM4040 precision voltage reference) is vastly simpler to implement.
Why does my bridge output drift when I touch the wires?
Your body acts as an antenna for 50/60Hz mains electric fields, injecting common-mode noise. While a good instrumentation amp (like the INA128 with 120 dB CMRR) will reject most of this, high-impedance bridge nodes (e.g., using 10kΩ resistors instead of 350Ω) are more susceptible to capacitive coupling. Lower your bridge impedance where possible, or add small 10nF ceramic capacitors across the differential output pins to filter high-frequency RF interference before it hits the amplifier.
What is the difference between a half-bridge and a full-bridge?
In a quarter-bridge, only one resistor changes. In a half-bridge, two resistors change in opposite directions (one increases, one decreases), doubling your output sensitivity. In a full-bridge, all four resistors are active strain gauges, quadrupling the sensitivity and providing the best temperature compensation. If you are buying a commercial load cell, it is almost certainly a full-bridge internally.
For further reading on bridge topologies and instrumentation amplifier selection, consult the bridge circuit tutorials on All About Circuits or the SparkFun HX711 Hookup Guide for practical microcontroller integration. For deep-dive mathematical analysis of sensor bridging, refer to the Wheatstone Bridge theory page on Electronics Tutorials.






