hello
i am trying to make a pic detect a small voltage change 0.2v to 0.6 volt
not measure it , just detect its change
i have to use 16f628, anything else is not an option
any suggestions ?
hello
i am trying to make a pic detect a small voltage change 0.2v to 0.6 volt
not measure it , just detect its change
i have to use 16f628, anything else is not an option
any suggestions ?
Analog to Digital converter, maybe?
There is no "I" in "team", unless Apple makes it... Then it would be iTeam.
Check out the comparator and voltage reference sections of the data sheet. You can set Vref to 5/24 * 2 = 0.4V and use a comparator to detect if the other input is above or below it.
Mike.
as already suggested use the internal comparators
Gods own Country
Incredible !ndia
www.flickr.com/photos/_akg/
"Give a man a fish, and he will eat for a day. Teach that man to fish, and he will eat for a lifetime."
I think it is better to amplify the voltage 10 times using low noise operational amplifier such as TLO71 to get greater ampltude and and then use a window comparator to detect the change of the voltage
Regardless of amplifying it or not, it makes obvious sense to use the internal comparators in the PIC - there's also no requirement for a window comparator, as he's not looking to detect a 'window', just above or below a certain value.Originally Posted by kamdy
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
thanks all
i know about using an opamp
but actually i am trying to minmize the use of components
so is it possible to just connect the source to the input pins of the comparator and set the Vref. and thats it
with no amplification or whatever ?
what is the maximum voltage of ths source you are using
Read the datasheet about it!, there are low and high ranges for Vref, the low range covers from 0.2V to about 3V in 0.2V increments.Originally Posted by max_imum2000
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
just do as I said earlier.Originally Posted by max_imum2000
Mike.