what is analogue to digital conversion?
- joyliu64
- Jan 28
- 1 min read
what is analogue to digital conversion? Analogue to Digital Conversion (ADC) is the process of converting an analogue signal (continuous, real-world signal) into a digital signal (discrete values in binary form, typically a series of 0s and 1s). This process allows analogue signals, such as sound, light, temperature, or pressure, to be processed, stored, and transmitted by digital systems like computers, microcontrollers, and digital signal processors.
Why is ADC Important?
Most real-world signals are analogue, meaning they can take on an infinite range of values (e.g., sound waves, temperature, or light intensity). However, modern computers, digital electronics, and communication systems work with digital data (discrete values represented in binary form). ADC bridges this gap, enabling analogue signals to be represented in a digital form that machines can understand and process.
How Does Analog-to-Digital Conversion Work?
The ADC process involves several steps:
Sampling: The analogue signal is measured at regular intervals (samples). The rate at which this is done is called the sampling rate or sampling frequency. A higher sampling rate captures more detail of the analogue signal.
Quantization: Each sample taken is approximated to the nearest value that can be represented in the digital form. This process is called quantization. It effectively maps the infinite number of analogue values to a finite set of possible digital values.
Encoding: The quantized value is then converted into a binary number, representing it digitally. The number of bits used in this step determines the resolution of the ADC. The higher the bit-depth (e.g., 8-bit, 16-bit, 24-bit), the finer the representation of the analogue signal.








Comments