analog-to-digital converter
A device that converts an infinite resolution analog signal to a finite resolution digital signal.
ADC: turning real-world signals into numbers a computer can read
An analog-to-digital converter (ADC) is a semiconductor device that samples a continuous voltage or current signal at regular intervals and expresses each sample as a binary number. Industrial systems use ADCs to bridge the gap between the physical world, where most measurements are analog (temperature, pressure, vibration), and digital control systems that process discrete numerical values. Without an ADC, a PLC or microcontroller cannot react to sensor data.
The conversion process happens in two stages: sampling and quantization. During sampling, the ADC measures the incoming voltage at fixed time intervals, typically ranging from kilohertz to gigahertz depending on the application. During quantization, the measured voltage is rounded to the nearest discrete level within the converter's resolution. An 8-bit ADC produces 256 possible output values; a 12-bit converter produces 4096. The difference between consecutive levels is called the least significant bit (LSB) or step size. A 12-bit ADC with a 0 to 10 volt input range, for example, has an LSB of roughly 2.4 millivolts.
Industrial ADCs come in several architecture types, each with different speed and power characteristics. Successive approximation registers (SAR) dominate in data acquisition systems, offering good speed and resolution balance at moderate power consumption. Flash converters sacrifice resolution for extreme speed in video and RF applications. Sigma-delta converters excel at high resolution with heavy filtering, common in precision scales and analytical instruments. The choice depends on the required conversion rate (samples per second), resolution (bits), and input bandwidth.
Common failure modes include aliasing, where signals faster than half the sampling rate fold back into the output as false low-frequency signals; and quantization error, an irreducible noise floor inherent to finite resolution. To prevent aliasing, an analog low-pass filter (called an anti-aliasing filter) is placed before the ADC to remove frequency content above half the sampling rate. ADC accuracy also depends on the reference voltage stability; any drift or noise on the reference directly corrupts the output codes.
Industrial ADCs appear in almost every control and monitoring application: variable frequency drives sample motor current and voltage, process controllers read temperature and pressure transmitters, vibration monitoring systems capture bearing signatures. They are integrated into data acquisition modules, embedded in sensor signal conditioners, and built into the analog input channels of PLCs and industrial computers. The term reflects the direction of conversion: digital systems must convert the analog world into numbers before they can act on it.