Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
embedded:adventures:analogio [2016/09/25 14:07] – pvela | embedded:adventures:analogio [2024/08/20 21:38] (current) – external edit 127.0.0.1 |
---|
===== Analog Output ===== | ===== Analog Output ===== |
| |
there are two means to create analog output. One is through a digital to analog (D/A) converter, while the other is through a high frequency digital signal. The latter method is called [[https://en.wikipedia.org/wiki/Pulse-width_modulation|pulse width modulation (PWM)]]. One form of PWM involves modulating a digital signal at a certain (high) frequency with a variable duty cycle. If the duty cycle is 0%, then the signal is always off. If the duty cycle is 100%, then it is always on. If it is at 50%, then it is a pulse train whose frequency is that of the signal. Specialized, interrupt-driven, code is required to get PWM working on microprocessors. Fortunately, today, that code is already written in a library to be used. | There are two means to create analog output. One is through a digital to analog (D/A) converter, while the other is through a high frequency digital signal. The latter method is called [[https://en.wikipedia.org/wiki/Pulse-width_modulation|pulse width modulation (PWM)]]. One form of PWM involves modulating a digital signal at a certain (high) frequency with a variable duty cycle. If the duty cycle is 0%, then the signal is always off. If the duty cycle is 100%, then it is always on. If it is at 50%, then it is a pulse train whose frequency is that of the signal. Specialized, interrupt-driven, code is required to get PWM working on microprocessors. Fortunately, today, that code is already written in a library to be used. |
| |
| Returning to the former method, the old school way to control a D/A chip was through a parallel output scheme, whereby the 8- or 10- or XX-bits of output were sent directly to the chips for conversion to a single analog output signal. As microprocessors got faster, the parallel input signal was replaced with a serial input signal. The serial signal economized on pin usage. More generally, microprocessor design has been moving towards serial interfaces and away from parallel interfaces. The reason most likely has to do with shrinking chip sizes and increased functionality without significant addition to pin count. Parallel interfaces are still used on computers since they transmit data at a faster rate (on PCs buses can be 64- to 256-bits wide, maybe more as I don't keep track of the cutting edge). |
| |
==== Arduino ==== | ==== Arduino ==== |