PIC18F4520: Serial Digital-to-Analog Conversion

From Mech
Revision as of 09:52, 2 July 2007 by LIMS (talk | contribs)
Jump to navigationJump to search

Since PIC microcontrollers do not offer analog outputs, a Digital-to-Analog converter (DAC) must be used to obtain an analog signal. An eight bit digital number can be converted to analog by using eight of the output pins from the PIC MCU to a separate DAC chip, however if more than one conversion is neccessary, this will quickly use up many of the available output pins from the PIC microcontroller, and require extensive wiring. Luckily, there is an easier and more effective way of doing this using communication. utilizes two lines to communicate, usually called SCL and SDA (a clock line and a data line). A "master" produces an signal which is sent to the "slave" to work with. Many slaves can be controlled by one master, as long as no slave addresses are used more than once (the number of possible slave addresses is limited by the specific chip being used as a slave). Communication begins with a start condition (the clock line being held high while the data line is dropped low) and ends with a stop condition (clock line held high while the data line is brought from low to high).

Startstopcond.jpg



Between the start and stop conditions are different bytes of information. These will differ with each application and each device you are communicating with, although many will have some sort of addressing byte, a command byte, and then information bytes. After every byte sent, the slave will send back an acknowledge bit, prompting the master to send the next byte of information.

C Programming

The basic building blocks of programming for communication are shown below.