Help with ADC conversion


Closed Thread
Results 1 to 7 of 7

Hybrid View

  1. #1
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default

    I'll second the Comparator idea, but with a little difference. (Don't filter the signal)

    Set a timer to have a delay of 20ms or more.
    Using the comparator Interrupts, reload that timer every time you get a pulse.

    If the voltage drops below the comparator's trigger point, the timer will overflow.
    Use the timer interrupt/flag to determine when there's an error condition

    <img src="http://www.picbasic.co.uk/forum/attachment.php?attachmentid=3162&stc=1&d=123345227 4" />
    Attached Images Attached Images  
    DT

  2. #2
    Join Date
    Oct 2008
    Posts
    52


    Did you find this post helpful? Yes | No

    Default

    Darrel, Mister_E

    I am not very familiar with comparators and the use of timers. I have been trying to read more about how to implement them. But this is what I think I need to do. Feed signal into CCP1 pin (after setting up compare module) on say an 18F1320. Set timer1 to reset after every pulse (half cycle ~8ms) by using comparator interrupt flag. If interrupt flag is not set (voltage below threshhold), timer overflows and sets overflow flag. If this is correct, what I don't understand is where the reference voltage (comparator's trigger point)to determine a low voltage condition comes from. Its probably pretty simple but I haven't grasped it yet.

    Thanks for the help,

    Don

    Edit:
    After reading the datasheet again and again and again..... I think I may not have a clue what you guys are trying to tell me...
    Last edited by dbachman; - 1st February 2009 at 19:21.

  3. #3
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    That will be hard to setup PIC18F1320 analog comparator, as he don't have any BUT... PIC18F2220 and lots other have some already built-in.

    Internal analog comparator works as regular voltage comparator (LM393 and so on), you set a voltage reference on one input pin (voltage divider, trim pot, whatever else fancy stuff), and you apply your signal on the other input pin, then you just monitor the voltage comparator output.

    In a PIC, when the output of the comparator change, it can trigger an interrupt event, so it's done in background. Once in the Interrupt handler, you do what you need to do.

    Have a look at Darrel's Instant interrupt, this will save you some headaches. There's also some code-example on how to use'em with Timer.
    http://www.pbpgroup.com/modules/wfse...p?articleid=19

    From there, you should be able to begin some experiments.
    Last edited by mister_e; - 1st February 2009 at 19:29.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  4. #4
    Join Date
    Oct 2008
    Posts
    52


    Did you find this post helpful? Yes | No

    Default

    Hey Steve,

    I was just check'n to see if you would catch that............not.

    Anyway, I do have a couple of 18F2550 which look like they have the analog comparators. After looking at THAT datasheet, things are becoming a little more clear. I think I actually might be able to put something together. Thanks for the help and hopefully you can stand by as I try to get this to work.

    Thanks, Don

Similar Threads

  1. Can't get ADC to loop
    By TravisM in forum mel PIC BASIC
    Replies: 2
    Last Post: - 11th October 2009, 15:33
  2. A/D conversion with PIC18F67J50
    By ScaleRobotics in forum mel PIC BASIC Pro
    Replies: 9
    Last Post: - 8th May 2009, 01:48
  3. ADC conversion trouble
    By PICante in forum mel PIC BASIC Pro
    Replies: 24
    Last Post: - 30th April 2008, 20:42
  4. ADC problem with PIC16F917
    By eetech in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 7th March 2007, 21:22
  5. ADC problem
    By NacNud in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 15th December 2004, 02:27

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts