An Analog Devices ADC is a dedicated integrated circuit that translates continuous analog voltages into precise digital values, offering vastly superior resolution, linearity, and noise performance compared to the internal converters built into standard microcontrollers. Swapping your ESP32’s noisy internal 12-bit converter for an external Analog Devices part changes a jittery, unusable sensor reading into a stable, high-fidelity data stream capable of resolving microvolt-level shifts without software averaging hacks. However, makers commonly confuse nominal resolution (the theoretical bit count printed on the box, like '16-bit') with Effective Number of Bits (ENOB), which is the actual usable, noise-free resolution you achieve on a real PCB.
Why Bypass Your Microcontroller's Internal ADC?
Microcontrollers like the standard ESP32 or Arduino Uno include built-in Analog-to-Digital Converters to keep BOM costs low and pin counts simple. But these internal ADCs share silicon real estate with high-speed digital logic, WiFi radios, and switching power supplies. The result is a noisy analog ground plane.
The ESP32 boasts a 12-bit ADC, but independent bench tests consistently show its ENOB hovers around 9.5 to 10.5 bits. Furthermore, the ESP32's internal ADC suffers from severe non-linearity near the 3.3V rail and a minimum readable voltage threshold of around 100mV. If you are trying to measure a 50mV signal from a current shunt or a thermocouple, the internal ADC is functionally blind. An external Analog Devices ADC isolates the sensitive analog front-end from the MCU's digital noise, providing true linear scaling from 0V to the reference voltage.
The Worked Example: 16-Bit Precision on a 5V Rail
Let’s look at the math when measuring a standard 0-5V industrial pressure transducer rated for 100 PSI. We will compare the internal ADC of a 3.3V microcontroller against the Analog Devices AD7606B, a 16-bit simultaneous sampling SAR ADC that costs roughly $28 in single quantities.
The Internal MCU Approach (12-bit, 3.3V Reference):
- Step Size: 3300mV / 4096 steps = 0.80mV per step.
- The Problem: The transducer outputs 2.500V at 50 PSI. A 0.1 PSI change equals a 5mV shift. While 5mV is theoretically larger than the 0.80mV step size, the internal ADC's noise floor is typically ±15mV. The 5mV signal is buried in the noise. You will see the reading jump randomly between 48 and 52 PSI.
The Analog Devices AD7606B Approach (16-bit, 5V Reference):
- Step Size: 5000mV / 65536 steps = 0.076mV per step.
- The Result: That same 5mV shift (0.1 PSI) now spans roughly 65 discrete digital steps. Because the AD7606B features an integrated low-pass anti-aliasing filter and a highly stable internal reference, the noise floor is under 0.5mV. Your firmware reads a rock-solid 50.1 PSI.
Where You Meet Analog Devices ADCs in Practice
You will rarely find Analog Devices (which now includes the legacy Linear Technology portfolio) ADCs in basic hobbyist LED-blinking projects. You meet them in applications where signal integrity directly impacts safety, financial accuracy, or scientific validity:
- Industrial DAQ (Data Acquisition): Monitoring multi-phase motor currents where phase alignment requires simultaneous sampling of all voltage and current channels at exact microsecond intervals.
- Precision Weigh Scales and Force Measurement: Reading microvolt-level outputs from Wheatstone bridge load cells using 24-bit Sigma-Delta converters.
- Power Quality Analysis: Calculating true RMS power and harmonic distortion on the grid, which requires high sample rates and high ENOB to capture high-frequency voltage spikes.
- Medical and Scientific Instrumentation: EEG/ECG monitors and gas chromatographs where a dropped bit or non-linear transfer function ruins the diagnostic data.
SAR vs. Sigma-Delta: The Architecture Decision
Analog Devices manufactures two primary ADC architectures for embedded systems. Choosing the wrong one will ruin your project, regardless of the bit count.
Successive Approximation Register (SAR):
SAR ADCs use a binary search algorithm with an internal DAC to find the input voltage. They are fast (kSPS to low MSPS), have no latency, and excel at capturing fast-moving AC signals or multiplexing many channels quickly. They typically top out at 18 to 20 bits of resolution.
Sigma-Delta (Σ-Δ):
Sigma-Delta ADCs use oversampling and digital filtering to achieve ultra-high resolution (24 to 32 bits). They are inherently slow (typically 10 to 1000 SPS) and introduce a settling time latency due to the digital filter. They are the undisputed kings of measuring slow-moving DC signals like temperature, strain, and weight.
Decision Tree: Picking the Right Analog Devices ADC
Use this decision matrix to select the exact part number for your next PCB spin. Do not default to the most expensive chip; match the architecture to your signal bandwidth.
| If your signal is... | And your priority is... | Choose this Architecture | Concrete Part Pick (2026) | Approx. Price |
|---|---|---|---|---|
| Slow DC (Load cells, RTDs, Thermocouples) | Maximum resolution, rejecting 50/60Hz mains hum | Sigma-Delta | AD7124-8 (24-bit, 8-ch, integrated PGA) | $12.50 |
| Single-channel high-precision DC on a strict budget | Simplicity, minimal external components | Sigma-Delta | LTC2400 (24-bit, 1-ch, I2C/SPI) | $11.00 |
| Fast AC (Motor control, audio, vibration) | Simultaneous sampling, zero latency | SAR | AD7606B (16-bit, 8-ch simultaneous) | $28.00 |
| High-speed RF or wideband IF sampling | Giga-samples per second, direct-to-digital | Pipeline | AD9208 (14-bit, 3 GSPS) | $850+ |
Hardware Layout Rules You Cannot Ignore
Buying a $30 Analog Devices ADC and wiring it on a breadboard with 20cm jumper wires is a guaranteed way to destroy its performance. High-resolution ADCs will digitize the noise radiating off your jumper wires. Follow these non-negotiable layout rules:
- Never Split the Ground Plane: Older Analog Devices tutorials sometimes referenced splitting analog and digital grounds. Modern best practice for mixed-signal ICs like the AD7124 is a single, unbroken, solid ground plane. Splitting planes creates return-path bottlenecks that generate more noise than they solve.
- Decoupling Placement: Place a 100nF X7R ceramic capacitor and a 10µF tantalum capacitor within 2mm of the ADC’s AVDD and DVDD pins. The vias to the ground plane must be placed immediately adjacent to the capacitor pads, not at the end of a long trace.
- SPI Trace Routing: The SCLK and DIN/DOUT lines are high-speed digital signals. Route them over a continuous ground plane, keep them away from the analog input traces, and if possible, add a 22Ω to 33Ω series termination resistor near the MCU to dampen ringing on the clock edge.
- Guard Rings: For 24-bit Sigma-Delta inputs, route a copper guard ring around the high-impedance analog input traces and drive that ring with a low-impedance buffer at the same voltage as the input signal to eliminate leakage currents.
Upgrading to an external Analog Devices ADC is the dividing line between a toy prototype and a professional instrument. By selecting the correct architecture (SAR for speed, Sigma-Delta for DC precision) and respecting mixed-signal PCB layout rules, you will unlock the true capability of your sensor hardware.






