PCF8591 module

Raspberry Pi with PCF8591 Analog To Digital Control in C

by Lewis Loflin

In this demo we'll be using Wiring Pi using C to interface to control-read a PCF8591T sensor module. The PCF8591T features four 8-bit analog to digital converters and a single 8-bit digital to analog converter.

This will operate through the I2C interface on the Raspberry Pi.

In this case I connected the AOUT channel to AIN2 so the output value can be read back. The fact that the AD and DA process uses only 8-bits introduced an error of one or two LSB. The power supply connection for VCC was only 4.75 volts and the most of the apparent error was on the high end. These ADCs are only good to about 4.2 volts.

In addition I used a level converter between the Raspberry Pi's I2C operating at 3-volts with the PCF8255 operating at 5-volts. The converter should not have contributed to the conversion-read back errors.

One oddity is when reading one of the AD channels one must perform what I call a dummy read that begins the conversion. The first read begins the conversion - the next get the first value. As long as one keeps reading the same channel, this only needs to be done once; change channels the process must be repeated.

The device has a sequential read mode for the four AD channels. See the spec sheet for more on that.

Complete code pcf8591Rpi.txt

Downloads PCF8591 spec sheet. (PDF file)

This is a collection of programs and hardware hacks related to mainly Raspberry Pi and Debian Linux.

Web site Copyright Lewis Loflin, All rights reserved.
If using this material on another site, please provide a link back to my site.