To convert a 16-bit SAR ADC converter resolution with a standard 3.3V reference into its voltage step size (Least Significant Bit, or LSB), the direct answer is 50.35 µV. The formula used is LSB = VREF / 2N. Substituting our values: 3.3V / 216 = 3.3V / 65536 = 0.00005035V. If you are designing an embedded sensor node and need to know exactly how much voltage change triggers a single digital count, this is your baseline.

The Core Conversion: Bits to Voltage Steps

A Successive Approximation Register (SAR) ADC works by binary search, comparing the input voltage against a DAC output until it narrows down the exact digital code. The 'step size' is the smallest voltage increment the ADC can resolve. Below is the conversion table for neighboring bit depths at standard logic-level reference voltages.

Resolution (N) Total Steps (2N) LSB at 3.3V VREF LSB at 5.0V VREF
12-bit4,096805.66 µV1.22 mV
14-bit16,384201.42 µV305.18 µV
16-bit65,53650.35 µV76.29 µV
18-bit262,14412.59 µV19.07 µV
20-bit1,048,5763.15 µV4.77 µV

What Fixes the Answer (and When It Shifts)

The LSB calculation assumes an ideal, noise-free voltage reference and a purely unipolar input range (0V to VREF). However, real-world embedded systems introduce variables that shift this conversion.

How the Answer Shifts for Mains and Industrial Voltages

When using a SAR ADC converter to measure AC mains via a voltage transformer or resistor divider, the shift from 120V to 230V or 3-phase systems changes your required input range. A 120V RMS system peaks at ~170V, while a 230V system peaks at ~325V. If you use a bipolar SAR ADC (e.g., ±10V input range) to measure these stepped-down signals, your formula shifts to LSB = (VMAX - VMIN) / 2N. For a ±10V range on a 16-bit ADC, the LSB becomes 20V / 65536 = 305.18 µV at the ADC pin, which you then multiply by your voltage divider ratio to find the primary-side resolution.

When the Conversion is Meaningless

The math becomes meaningless when your noise floor exceeds the LSB. If you deploy a 20-bit SAR ADC (3.15 µV LSB) on a standard breadboard with an ESP32, the digital switching hash and thermal noise from the breadboard traces will easily hit 2mV to 5mV. In this scenario, your bottom 9 to 10 bits are just measuring random noise. Without a dedicated 4-layer PCB, analog ground planes, and a precision reference like the ADR4525, chasing 20-bit resolution is a waste of silicon.

Bench Tip: Always check the Effective Number of Bits (ENOB) in the datasheet. A '16-bit' SAR ADC might only have an ENOB of 13.5 bits in practice due to internal thermal noise and integral non-linearity (INL).

SAR ADC Converter Decision Tree: Pick Your Part

Use this decision path to select the exact SAR ADC converter IC for your 2026 embedded project. Follow the if-then logic to terminate at a concrete part number.

Condition / Requirement Path Recommended Part Number
Need I2C interface, low speed (<860 SPS), and simple integration with Arduino/ESP32? IF I2C & Low Speed TI ADS1115 (Default Pick)
Need SPI interface, 12-bit resolution, 8 channels, and low cost (~$2.50)? IF SPI & 12-bit & Multi-channel Microchip MCP3208
Need high speed (1 MSPS+), 16-bit, and simultaneous sampling for motor control? IF High Speed & Simultaneous Analog Devices AD7606
Need industrial ±10V bipolar inputs directly without external op-amp scaling? IF Bipolar High Voltage TI ADS8688

The Default Recommendation: For 90% of hobbyist, IoT, and general-purpose sensor projects, terminate your search at the TI ADS1115. It includes an internal programmable gain amplifier (PGA), an internal oscillator, and an I2C interface that plays perfectly with standard microcontroller libraries, eliminating the need for external SPI bit-banging or complex clock routing.

Real-World Edge Cases and Layout Rules

Understanding the SAR architecture is only half the battle; the physical layout dictates whether you actually achieve the calculated LSB.

  • Kelvin Connections: For 16-bit and above, the ground return path for your analog signal must be separate from your digital ground until they meet at a single star point directly under the ADC chip.
  • Charge Injection Kickback: SAR ADCs switch internal capacitors rapidly. This causes a 'kickback' voltage spike on the input pin. You must place a low-ESR X7R ceramic capacitor (typically 100nF to 1µF) as close to the ADC input pin as physically possible to absorb this charge.
  • Source Impedance: Unlike Sigma-Delta converters, SAR ADCs require a low-impedance drive. If your sensor outputs through a 100kΩ voltage divider, the internal sampling capacitor won't charge fully during the acquisition window, resulting in missing codes. Buffer high-impedance sources with an op-amp like the OPA333.

FAQ: SAR ADC Converter Nuances

Why not just use the ESP32's internal ADC?

The ESP32's internal ADC is notoriously non-linear, especially near the 0V and 3.3V rails, and suffers from severe Wi-Fi/Bluetooth RF interference. Its effective resolution is closer to 10 bits. For any precision DC measurement (like battery cell monitoring or load cells), an external SAR ADC converter like the ADS1115 is mandatory.

SAR vs. Sigma-Delta: Which is better for audio?

Sigma-Delta. SAR ADCs excel at medium-speed, high-resolution DC and low-frequency AC measurements (like power metering or thermocouples). Sigma-Delta converters oversample and filter, making them vastly superior for continuous, high-frequency waveforms like audio or vibration analysis.

Does a higher VREF give me better resolution?

No. A higher VREF increases your range, but it actually worsens your resolution (the LSB voltage step gets larger). If your signal only swings from 0V to 1.0V, using a 5.0V reference wastes 80% of your digital codes. Match your VREF as closely as possible to the maximum expected peak of your input signal.