PIC12F675 ADC code and Proteus simulation

This post provides the ADC code using PIC12F675 microcontroller. This code is written in C language using MPLAB with HI-TECH C compiler. You can download this code from the ‘Downloads‘ section at the bottom of this page.

 

It is assumed that you know how to interface LCD with PIC12F675 microcontroller. If you don’t then please read this page first, before proceeding with this article.

The result of simulating the code in Proteus is shown below.

PIC12F675 ADC schematic

In the above figure, pin3(AN3) of PIC12F675 is being used as ADC input pin[1]. The result of ADC conversion is shown on the LCD screen. If you attach pin3 of PIC12F675 to ground, then a value of 0000 will be displayed on the LCD screen and if you attach pin3 with 5v power supply, then a value of 1023 will be displayed on the LCD screen. In other words, ADC resolution is 10bits and value of ADC result varies from 0(0v) to 1023(5v). Because there is a variable resistor of 50% value attached on pin3 of PIC12F675 in Figure1, that is why it has 2.5v on it. As a result, a value of 511(Half of 1023) is being displayed on the LCD.

Consider the figure shown below[2].

This figure shows that at a single time, only one ADC channel can be selected as an input channel for ADC conversion. We can select AN0 or AN1 or AN2 or AN3 channel depending upon CHS1:CHS0 bits. In the code I have given a simple channel selection method (Explained below in the code section). I have selected VCFG to be zero, hence VREF is equal to VDD (Of-course you can change this if you want).

Code

The code used to initialize ADC input channels is shown below.

InitADC() function should be called in the start of main function to initialize ADC input channels. You will need to pass an input argument to InitADC() function. For example, if you want to initialize ADC on AN0(pin7) channel, then write InitADC(AN0); in your code. To initialize multiple channels for example, AN1 and AN2 you can write InitADC(AN1|AN2); in your code etc.

The function used to read ADC value from input pin is shown below.

To read ADC value from AN0 channel, you can write GetADCValue(AN0); in your code. Similarly, you can read ADC value from all other channels as well. You can read ADC value only from one channel at a time. GetADCValue() function returns the 10bit ADC value.

The main function code is shown below.

In the main function, ADC is initialized on pin3(AN3), you can see in Figure1 that ADC input is attached on this pin. After ADC, LCD is initialized using InitLCD()function. After that, in the while loop code reads ADC value from AN3 channel after every half second and converts this integer value into 4 digits. And those digits are displayed on the LCD screen.

In this way, after every half second new ADC value is updated on the LCD screen. You can use this ADC code library in your projects. You can leave your comments in the comment section below.

Notes and References

[1]  Besides pin3(AN3), you can select pin7(AN0) or pin6(AN1) or pin5(AN2) as ADC input pin.
[2]  This figure is taken from PIC12F675 datasheet, ADC chapter.

Downloads

ADC code using PIC12F675 was compiled in MPLAB v8.85 with HI-TECH C v9.83 compiler and simulation was made in Proteus v7.10. To download code and Proteus simulation click here.

Further Reading Suggestions

 

Source : PIC12F675 ADC code and Proteus simulation

About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter