<?xml version="1.0" encoding="utf-8"?>
				<!-- generator="e107" -->
				<!-- content type="Forum / topic" -->
				<rss  version="2.0">
				<channel>
				<title>8051 Microcontroller Projects AVR PIC Projects Tutorials Ebooks Libraries codes : Forum / topic</title>
				<link>http://www.8051projects.net/</link>
				<description>Learn to make simple microcontroller projects, pic, 8051, avr and arm projects. download 8051 projects, tutorials, libraries, sample codes. join the microcontroller discussion forum and ask doubts regarding electronics. the best source for 8051 over internet.</description>

<language>en-gb</language>
				<copyright><a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/in/" target="_blank"><img alt="Creative Commons License" width="80" height="15" style="border-width:0" src="http://i.creativecommons.org/l/by-nc/2.5/in/80x15.png" target="_blank" /></a>This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/in/" target="_blank">Creative Commons Attribution-Noncommercial 2.5 India License</a>.<a href='http://www.8051projects.net/disclaimer.htm' target='_blank' />Rickey's World Disclaimer</a></copyright>
				<managingEditor>Ajay Bhargav - contact@nospam.com</managingEditor>
				<webMaster>contact@nospam.com</webMaster>
				<pubDate>Mon, 01 Dec 2008 11:58:04 -0800</pubDate>
				<lastBuildDate>Mon, 01 Dec 2008 11:58:04 -0800</lastBuildDate>
				<docs>http://backend.userland.com/rss</docs>
				<generator>e107 (http://e107.org)</generator>
				<ttl>60</ttl>
				<textInput>
				<title>Search</title>
				<description>Search 8051 Microcontroller Projects AVR PIC Projects Tutorials Ebooks Libraries codes</description>
				<name>query</name>
				<link>http://www.8051projects.net/search.php</link>
				</textInput>
						<item>
						<title>PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[hi, would any one send me an example PIC C code to take averages of many ADC values, to get a stable one so that a comparator with hysteresis effect may be obtain. <br />]]></description>
<pubDate>Sun, 29 Jul 2007 23:42:24 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[its fairly easy... create an array and store the value.. like this...<br /><div class='indent'>unsigned long int adc_val;<br /><br />unsigned int adc_avg; // stores adc average value<br /><br />main() { //this is just to explain<br />       unsigned char i;<br />       adc_val =0;<br />       for(i=0;i<50;i++){<br />                 adc_val+ = adc(); // adc() is function that returns<br />                                               // converted adc value<br />       }<br />       adc_avg = adc_val/50;<br />}<br /></div><br />This will give you average of 50 value, and i am sure its stable <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />  you can take average of averages.. that will give you even more stable value.. but that is needed when you have high fluctuations.. etc<br />If anymore doubt please ask..]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Mon, 30 Jul 2007 03:50:43 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[/in the following programe <br />//Vs taking different adc values                    <br />//when Vs&lt;=Va and when FG1=1 then LED at pin c4 should be on at Vs=Va+Va_1/2<br />//and for the same Vs&lt;=Va but FG1=0 LED at pin c4 should be off at Vs=Va-Va_1/2<br />//i.e. want to get flashing of LED with some delay at a slightly different voltages<br />//so that trying to achieve a compratr with hystarisis<br />//how it could be achieve plz suggest a practical logic to cachieve this task<br /><br />#include "snsr1.h"<br /><br />#define cutoff 255      //5V<br />#define Va_1   10        //0.2V<br />#define Va     51        //1V<br />#define Vb     102      //2v<br />#define Vc     179      //3.5v<br /><br /><br />void main()<br />{<br />   int Vs;<br />   int1 FG1,FG2,FG3,FG4;<br />   setup_adc_ports(AN0);<br />   setup_adc(ADC_CLOCK_INTERNAL);<br />   setup_psp(PSP_DISABLED);<br />   setup_spi(FALSE);<br />   setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);<br />   setup_timer_1(T1_DISABLED);<br />   setup_timer_2(T2_DISABLED,0,1);<br />   setup_comparator(NC_NC_NC_NC);<br />   setup_vref(FALSE);<br /><br />   // TODO: USER CODE!!<br /><br />while(1)<br /> {<br />  set_adc_channel( 0 );<br />  Vs = read_adc();<br />  if(Vs&lt;=Va)<br />  { <br />   FG1=1; <br />   Vs = Va+Va_1/2;<br />   output_bit(PIN_C4,1);<br />   output_bit(PIN_C5,0);<br />   output_bit(PIN_C6,0);<br />   delay_ms(1000);<br />   FG1=0;<br />   Vs = Va-Va_1/2;<br />   output_bit(PIN_C4,0);<br />   output_bit(PIN_C5,0);<br />   output_bit(PIN_C5,0);<br />  }<br /><br />  else if(Va&lt;Vs&lt;=Vb)<br />     {<br />      FG2=1;<br />      output_bit(PIN_C4,1);<br />      output_bit(PIN_C5,0);<br />      output_bit(PIN_C6,0);<br />     }<br />         <br />  else if(Va&lt;Vs&lt;=Vc)<br />     {<br />      FG3=1;<br />      output_bit(PIN_C4,0);<br />      output_bit(PIN_C5,1);<br />      output_bit(PIN_C6,0);<br />     }<br /><br />  else<br />     {<br />      FG4=1;<br />      output_bit(PIN_C4,0);<br />      output_bit(PIN_C5,0);<br />      output_bit(PIN_C6,1);<br />     }<br />   }<br />}    <br />]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Fri, 03 Aug 2007 03:32:24 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[As i gave you an example already.. i think you did not read it carefully.. anyways you need to make just a little change in your program.<br />Please replace <br />Vs = read_adc();<br />in your program with the code below<br /><div class='indent'><div class='code_asm'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="asm" style="font-family: monospace;">adc_val =<span style="color: #ff0000;">0</span><span style="color: #adadad; font-style: italic;">;</span><br /><span style="color: #0000ff;">for</span><span style="color: #66cc66;">&#40;</span>i=<span style="color: #ff0000;">0</span><span style="color: #adadad; font-style: italic;">;i&lt;50;i++){</span><br />&nbsp; &nbsp; &nbsp;adc_val+ = read_adc<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #adadad; font-style: italic;">;</span><br /><span style="color: #66cc66;">&#125;</span><br />Vs = adc_val/<span style="color: #ff0000;">50</span><span style="color: #adadad; font-style: italic;">;</span><br />&nbsp;</div></div></div><br /><br />and define adc_val as unsigned long int and define i as unsigned char.. and see what you get..]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Fri, 03 Aug 2007 04:13:16 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[<br />i really appreciate ur concern <br /> there is Flow Chart named  FC1.doc file and modified code with ur suggestions, i m trying to achieve the following conditions<br /><br />1) When Vs&lt;=Va  Green LED flashes(on and off) with certain delay<br />  and RLY1 should also be on and off with the above <br />delay. It was achieved in comparator based circuit<br />with adding a flasher cct. (a comparator with<br />hysteresis).This hysteresis effect has to implement in<br />software.<br />2) WhenVa&lt;Vs&lt;=Vb<br />   Green LED on constantly<br />   and RLY1 should off<br />3) When Vb&lt;Vs&lt;=Vc<br />   yellow LED on<br />   and RLY2 should on<br />4) When Vc&lt;Vs<br />   Red LED on<br />   and RLY3 should on<br /><br />plz suggest me the practical schematic(16F877 cct.) to meet  for these conditions and sugget me the corresponding modifications in the code.]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Fri, 03 Aug 2007 06:31:00 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[well whatever you are telling you can do by yourself.. i ain't giving you any code for that..<br />but for point 1. can you first tell me what is the result you're getting with the software change i told you?]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Fri, 03 Aug 2007 07:53:50 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[actually i have some doubts in my cct. (schematic) as well, that how can i connect an LED and Relay at the same port pin a/c to my desired condition and what voltage should i give  at Vref- and Vref+. would u like to suggest me the schematic(cct.) plz.]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Fri, 03 Aug 2007 21:47:18 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[connecting led is simple..<br /><br />5V |----/&#092;/&#092;/&#092;/&#092;----|>|---Port Pin<br /><br />and for connecting relays.. i have added a document in the circuit section of the download check it. It has full explanation of the different circuits that can be used for the relays..<br />In your case i think the Fig D of the document is the best way to connect the relay.]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Sat, 04 Aug 2007 05:01:57 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[u say that i just finish things like <br />while(1) {----}<br />what does it mean]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Tue, 07 Aug 2007 21:35:56 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[that was a part of my signature.. <img src='http://www.8051projects.net/e107_images/emotes/yahoo/10.gif' alt='' style='vertical-align:middle; border:0' />  doesn't matter <img src='http://www.8051projects.net/e107_images/emotes/yahoo/3.gif' alt='' style='vertical-align:middle; border:0' />  did u see the circuit? i hope you wont have any problem now <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Wed, 08 Aug 2007 01:42:22 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[well selecting an EEPROM for your project is usually depends on your requirement, and also second point is the compatibility. Its not mandatory that you should use only one type of EEPROM. e.g. your project need a maximum data of 2Kb to store so, there is no point for you to use an EEPROM of 8Kb or something.. i hope you understand my point. So according to need of your project you can select EEPROM.]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Wed, 08 Aug 2007 04:26:12 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[Y does 9306 Serial EEPROM is interfaced with controllers? Is it good to interfaced it with PIC controllers?]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Wed, 08 Aug 2007 03:52:07 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[hi, ajay<br /><br />There is a comparator module in PIC 16F877 how can i configure it or program it to achieve system hysteresis i.e. the stability(control) in on/off a device?]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Mon, 20 Aug 2007 05:12:55 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[you cannot achieve a perfect hysteresis in comparator. because minor fluctuations are always there. But i really don't know any other method to achieve hysteresis except taking averages. I have seen many projects (like digital thermometer etc.) where i have taken averages and its working pretty file. You can also define a particular limit upto which the o/p holds its stability.<br />e.g. define rage for a constant value.<br />say you want to have a value 5 for which switching is done.<br />so define a range. like.. from 3-7 or 4-6 as per your need and amount of fluctuation. This will help you control the switching and minor fluctuations will be neglected.<br /><br />Also what you can have a high resolution comparator. That also will solve your purpose, but it will be a separate hardware.]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Mon, 20 Aug 2007 05:29:53 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[would u brief me an example C code to define a specific range and amount of fluctuation.How can i get C code for digital thermometer from download section at the forum]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Tue, 21 Aug 2007 00:07:21 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[I have not posted the thermometer project yet.. but i will do it. soon... <br />instead of just using one if statement<br />like<br />if(dat<5)<br />   switch something<br />else<br />  switch something<br /><br />A range can be specified something like this..<br />if(dat>6)<br />    switch something<br />else if(dat<4)<br />    switch something<br /><br />so this way you have specified the switching range.. instead of just switching at 5 u are actually providing +/-1 limit to the switching.<br />I hope you have got it..]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Tue, 21 Aug 2007 02:37:41 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[i've downloaded ur code at download section for 89C4051 as RTC  as it is a software based RTC instead of interfacing external RTC IC's ,but i didn't understand it completely so i want to know that from where did u conceived the idea is there any resources(like tutorial) available on the net which help me to understand the software based RTC.]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Wed, 22 Aug 2007 11:21:14 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[well.. the only idea i had in mind was...<br />60 seconds = 1 min<br />60 min = 1hr<br />24 hr = 1 day<br />30/31/28 days = 1 month<br />12 months = 1 year<br /><br />So i had this idea <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />  using a for loop!! isn't that simple?]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Wed, 22 Aug 2007 11:23:34 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[its a biiiiggg.. code.. i cannot comment all of it... will look rubbish.. also it need time.. you can paste the <strong class='bbcode bold'>part of code</strong> which u didn't understand, i will comment it here..]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Thu, 23 Aug 2007 02:45:16 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[i read 89C4051 as RTC and only understand  few functions with the help of commenst written in the code the remaining functions i did not understand would u give details of the code in a tutorial manner as u have done it in the LCD tutorial.<br />]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Thu, 23 Aug 2007 02:31:33 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[how does the following cunction give 1 second delay?<br /><br />void sec1()//can be fine tuned by changing the for loop values<br /> {<br /><br />	bit_8 i,j;<br />	TMOD=0x11;<br />	for(i=0;i&lt;230;i++)<br />		_nop_();<br />	for(i=0;i&lt;7;i++)<br />	{<br />		TH1=0;<br />		TH0=1;<br />		TL1=0;<br />		TL0=0;<br />		TR1=1;<br />		for(j=0;j&lt;119;j++)<br />			_nop_();<br />		while(TF1!=1)<br />		{<br />			for(j=0;j&lt;255;j++);<br />				_nop_();<br />		}<br />		TF1=0;<br />		TR0=1;<br />		TR1=0;<br />		while(TF0!=1)<br />		{<br />			for(j=0;j&lt;120;j++)<br />				_nop_();<br />		}<br />		TF0=0;<br />		TR0=0;<br />	}<br /> }]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Thu, 23 Aug 2007 02:59:39 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[well i was noob at that time.. <img src='http://www.8051projects.net/e107_images/emotes/yahoo/4.gif' alt='' style='vertical-align:middle; border:0' />  when i wrote that function.. try writing a better 1 sec delay yourself <img src='http://www.8051projects.net/e107_images/emotes/yahoo/10.gif' alt='' style='vertical-align:middle; border:0' />  take care of the call and jumps etc.<br /><br />try making 1 sec routine with the help of simple for loops.. i think thats much better..]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Thu, 23 Aug 2007 03:10:48 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[well ajay, i would like to request u plz start PIC projects and coding PIC controllers so that we can get skills to program it easily.]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Wed, 05 Sep 2007 23:18:25 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[well Luqman, i really want to start by i don't have PIC controller with me.. and i think there is not much difference in controllers..<br />PIC AVR 8051 everything is same.. there is no difference.. whatever you make in 8051/AVR you can do the same thing in PIC to.. the only difference is features and some registers thats all..<br />When i get a PIC IC with me... i will start another step by step tutorial for it... <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />  Thank you for your input...]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Thu, 06 Sep 2007 01:00:30 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[I really don't remember which code/schematic.. must be lost somewhere in 1000 mails <img src='http://www.8051projects.net/e107_images/emotes/yahoo/10.gif' alt='' style='vertical-align:middle; border:0' /> <br />Please post the code and schematic here in forum..]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Mon, 24 Sep 2007 22:20:24 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[hi, ajay<br />plz go thru the schematic and code that i've sent earlier.]]></description>
<author>Luqman&lt;lkhanafridi@nospam.com&gt;</author>
<pubDate>Mon, 24 Sep 2007 19:53:36 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
						<item>
						<title>Re: PIC C code and Comparator Hysteresis</title>
<link>http://www.8051projects.net/forum-t1343.html</link>
<description><![CDATA[<img src='http://www.8051projects.net/e107_images/emotes/yahoo/7.gif' alt='' style='vertical-align:middle; border:0' />   <img src='http://www.8051projects.net/e107_images/emotes/yahoo/7.gif' alt='' style='vertical-align:middle; border:0' />   <img src='http://www.8051projects.net/e107_images/emotes/yahoo/7.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>buddy&lt;sidhu2u@nospam.com&gt;</author>
<pubDate>Thu, 24 Apr 2008 10:19:10 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t1343.html</guid>
</item>
				</channel>
				</rss>