MCP4921 12 bit DAC interfacing with PIC16F877 microcontroller via SPI Connectivity

MCP4921 12 bit DAC schematic

In any real time project, MCP4921 12 bit DAC interfacing with PIC16F877 microcontroller via SPI Connectivity is very essential. Because in real world most of the input sensors and output devices are analog. So if we want to work with those we need to know the basic interfacing of those sensors and output devices with microcontroller. Here I give you tutorial project on “MCP4921 12 bit DAC interfacing with PIC16F877 microcontroller via SPI Connectivity”.

Project description:

In this tutorial project we will see how we generate triangular Wave using MCP4921 12 bit DAC.  As we know that MCP4921 is a 12 bit DAC. But the control word we have to send 16 bit including data. In below we see the bit structure for MCP4921.

MCP4921 12 bit DAC

From above picture it is clear that bit 12-15 is used for control word and bit 0 to bit 11 are used for send 12 bit data.

Now question is how we maintain that format to send every 12 bit data along with 4 bit control word at MSB?

Let take an example if we want to write data via DCAA with output gain 1X and power down control bit.

So for that our control word will be

Bit 15 = 0 (write to DAC)

Bit 14 = 0 (Un buffered)

Bit 13 = 1(Output Gain)

Bit 12 = 1 (Output power down control)

So control bit will be 0011 = 3 .

So if you want to write 12 bit data like 001000100010. Then you have to send 16 bit data 0011001000100010 (0x32 and 0x22).

MCP4921 12 bit DAC schematic

Leave a Comment

Your email address will not be published. Required fields are marked *