DAC
Digital to Analog Converter. the process of taking a digital value and converting it to an analog signal of some variety.
Adapted from pgmfi.org wiki
Digital to Analog Converter. the process of taking a digital value and converting it to an analog signal of some variety. We'll use an 8-bit DAC0 using a 5.00V reference as an example. The DAC0 outputs a voltage (which can be measured with a DVM) ranging from (usually) zero output to the reference output, and is directly proportional to the input. 0x0 = 0V output. 0xff (full scale in our example) = 5.00V output. General form: Vout = Vref * count / 2^n. Where 2^n is the number of bits in the converter. For our example we used an 8-bit converter, so 2^8 = 256 possible combinations. Zero is a valid value, consuming one of our combinations, so the total span is 0 - 255 counts. So redoing our general equation: Vout = 5.00V
Applies to
23 taxonomy linksCredits and source
Source Adapted from DAC on pgmfi.org wiki. Licensed under CC BY-NC-SA 1.0.