XML RSS
What is this?
Add to My Yahoo!
Add to My MSN
Add to Google

Home
LCD-KEYS OnePort
PIC Introduction
PIC Programming
Programmer Types
PIC Programmer
Schematic Tool
Tips & Techniques
PIC Tutorials
C Course
Digital Downloads
Store
My SECRET
Oscilloscopes
Contact Me
About Me
Terms of Use
Search This Site
Freebies
Articles
Problem?-Solution
MicroBlog
Books
Resource Links
Site Map
Your Projects
Video du Jour
Rant/Rave
Privacy Policy

I use and
recommend Firefox
for the best internet
browsing experience. Click below for your
free copy today:

CLICK THE IMAGE:


Note: I find it faster
and easier to use and
it has great plugins.  

It even imports all your current
browser settings!

There's no risk as your existing browser is not affected in any way - you can just choose which one to use.






Sign up for MicroZine:
''The'' Microcontroller Newsletter


:
:
Don't worry -- your e-mail address is totally secure. I promise to use it only to send you MicroZine
Enter your first Name and primary email address in the form above:

And receive absolutely FREE a full project for:


"Measuring Analogue Voltages
Without An ADC"

(Using only one pin).

Instant Download:
You Can
Get It Right Now

Warning: This project could be Removed
at any time.  

It will NOT be
available indefinitely SO

To avoid
disappointment get it:

Now



Remember this is a project with full description and fully debugged C Source code - and it's not available from the main website.

You can only get it through this newsletter.


To get exclusive access Enter your first name Name and primary email address Now in the form above.:

But wait !

There's more...

You'll receive more
free and exclusive reports as well as site information and site product updates.

Scroll up to the form above and sign up NOW.  Don't forget it's FREE and if you don't like it you can unsubscribe at any time.

Click Here to use the form Now.

Social Bookmarking
Click & Add:
add to BlinkBlink
add to Del.icio.usDel.icio.us
add to DiggDigg
add to FurlFurl
add to GoogleGoogle
add to SimpySimpy
add to SpurlSpurl
Bookmark at TechnoratiTechnorati
add to YahooY! MyWeb
Find out Why social bookmarking is
Useful For You.

Readers comments

"I wanted to thank
you so so so much
for all the information
you have provided in
your site it's

SUPERB and FANTASTIC."


- Ranish Pottath


"This site really is
the best and my favorite.
I find here many useful
projects and tips."

- Milan

bursach<at>gmail.com

Learn PIC C Now
Wondering how to program your next project using C and need a great start?


"Awesome site,
very, very easy and nice
to navigate!"


- Matt
matt_tr<at>
wolf359.cjb.net


"I am a newbie to PIC
and I wanted to say
 how great your
site has been for me."


- Dave

de_scott<at>bellsouth.net

Learn Microcontrollers
"Interested in
Microcontrollers?"


Sign up for The
Free 7 day guide:

FREE GUIDE : CLICK HERE

"Your site is a great
and perfect work.
congratulations."


- Suresh

integratredinfosys<at>
yahoo.com

"I couldn't find the correct
words to define
yourweb site.

Very useful, uncovered,
honest and clear.

Thanks so much for
your time and works.
Regards."


- Anon







"12F675 Comparator use"

12F675 comparator test circuts and code.

The PIC comparator is the least used
peripheral but it is just as fast
as the standard LM311...

FREE Tools and Resources.
For Earning Online...
CLICK HERE NOW

More Resources...




Note: This information is  applicable to any PIC Microcontroller that has a built in comparator.

There is one comparator in the 12F675 which you can set up in many different ways and you can even supply a comparison voltage from an internal reference. This voltage can be set to any of 32 steps.

This is just a simple project designed to show simple operation so that you can use it.  It shows all you need to do to operate the comparator.

Response time

The comparator is high speed with a specification of between 150ns to 400ns (150ns typ , 400ns max).  

The typical response time is better than the standard response time of an LM311 which is 200ns - but you may get up to 400ns for the PIC comparator - thats still very good.

Note This is one of the strengths of the comparator module - the fact that it operates independently from the processor and has an extremely fast response time.


One "Gotcha"

One piece of information that is only implied by the documentation is that the comparator inputs must be set to analogue inputs - otherwise the comparator does nothing!

So you need to control ANSEL.

Links

Circuit.

Download.

Code.

Comparator Modes.

Registers associated with the comparator.

CMCON Comparator control register.

VRCON Comparator voltage reference control.


Comparator Modes

The following table shows the eight different ways  of configuring the comparator:


12F675 comparator modes

Registers

These are the registers for controlling the Comparator and Voltage reference:

The main controls are:
...the rest are for interrupt control and I/O Direction (don't forget ANSEL not in table!)

12F675 comparator and voltage reference


CMCON:

12F675 Comparator control CMCON

VRCON:

12F675 Comparator voltage reference VRCON

Simple Circuit to test the comparator

12F675 comparator test circuit

Download

Download code here : Click to download.

C Code for the comparator

The following code sets up the comparator as a fully external device i.e. the internal voltage reference is not used:

///////////////////////////////////////////////////////
//
// File: 16F675_comparator.c
//
// Author: J F Main.
//
// Description:
//
//   Use comparator GP0,GP1,GP2
//
// Compiler : mikroC, mikroElektronika C compiler
//            for Microchip PIC microcontrollers
//            Version: 6.2.0.0
//
// Note Testing:
//
//   Tested on 16F675
//
// Requirements:
//
//   Target : 16F675
//
// Notes :
//
//   Uses internal oscillator.
//
// Version:
// 1.00 Initial release.
//
// Copyright : Copyright © John Main 2007
//   http://www.best-microcontroller-projects.com
//   Free for non commercial use as long as this entire
//   copyright notice
s included in source code
//   and any other documentation.
//
///////////////////////////////////////////////////////

///////////////////////////////////////////////////////
// Definitions
#define COMPARATOR_OP 2
#define LED 4

///////////////////////////////////////////////////////
void init_ports(void) {
   //GP0 & GP1 are inputs
   TRISIO = 0 | (1<<GP0) | (1<<GP1); // 0 - op, 1 - ip

   ANSEL = (1<<GP0) | (1<<GP1); ; // Ana. ip on GP0 GP1
}

///////////////////////////////////////////////////////
void init_comparator(void) {
   // Comparator with external input and output.
   // Cout = 0 (comparator output), Cinv =0 (inversion)
   CMCON = 0x01;
}

///////////////////////////////////////////////////////
// Start here
void main() {
int i;

   init_ports();

   // Show device is active on power up.
   for (i=0;i<5;i++) {

      GPIO |= (1<<COMPARATOR_OP);
      delay_ms(100);

      GPIO &= ~(1<<COMPARATOR_OP);
      delay_ms(100);
   }

   init_comparator();

   while(1) {;
      GPIO |= (1<<LED);
      delay_ms(100);

      GPIO &= ~(1<<LED);
      delay_ms(100);
   }
}




Note: To run the above code you may need to remove the ICSP connections after programming as the comparator pins are on the PGD and PGC lines.

The code simply flashes the comparator output LED 5 times at start up and after this the comparator is turned on.  Then the second LED is flashed continuously.

By changing the POT setting you can see the comparator output turn on and off.


Jump from pic comparator module page to
Best-Microcontroller-Projects Home Page