<?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 12:53:26 -0800</pubDate>
				<lastBuildDate>Mon, 01 Dec 2008 12:53:26 -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>shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[HI everyone,<br /><br />                      i am developping an application called " shorting mechine control " using 89c51.the key idea of this project is  <strong class='bbcode bold'>controlling pneumatic valves(24volt input)</strong> using IO ports. the valve has to be switched on (i.e. it should get open)for a time of 1.5 milisecond when it gets a 5 volt signal from outside world. now the problem is :-<br /><br />1)  i want the valve to be controlled using PWM concept. and<br />2) how do i design the driver ckt for the valve?<br /><br /> <strong class='bbcode bold'>valve responce time is 0.6ms<br />stop time :0.05 ms</strong><br />]]></description>
<pubDate>Thu, 26 Jun 2008 04:36:16 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[<br /><br />Try the following logic:<br />1. enable the external interrupt int0 and timer1 as a 16 bit timer.during the initialisation of the timer1, see that the TR1 bit (which starts the timer) is cleared.<br />Here set the TH1/TL1 according to the following formula:<br />if the time to turn ON the valve is T (in seconds),and crystal  frequency of the uC  is F (in Hz)then <br />TH1/TL1  = ( 65,536  -  ( (F/12) x T)))<br />2.Now  connect the external trigger voltage to the 8051 external interrupt. (inverted as the 8051interrupt senses only negative edge.) <br />In the interrupt service routine, start  the timer1 (i.e. set the bit TR1) and turn on the valve through some port pin.<br />After T seconds, the timer interrupt will occur. Now in the timer interrupt service routine, clear the TR1 bit , reload the TH1/TL1 values and turn OFf the relay.<br />To compensate for the turn on delay (response time of the valve), add the delay to the required ON time. (For ur above values, T = 1.5+0.6 = 2.1 milliseconds. <br /><br /><br /><br />As for the interfacing the valve, if the valve consumes  a few milliamperes of current, then a simple NPN transistor like 2n2222/SL100 can be used to drive it but if the current is high use a high current driver like the ULN200X series buffer.<br /><br /><br />]]></description>
<author>pdi33&lt;islurpundalik@nospam.com&gt;</author>
<pubDate>Thu, 26 Jun 2008 09:13:16 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi @ pdi33,<br /><br /> i am controlling 16 valves all together ,so i cant use interrupt logic here as all 32 io pins are used (16 for valves and 16 for input signal). therefor i have planed to use software delay with or without timer.<br /><br />will that be ok ....?<br /><br />and another thing is that  the valve which i have to controll is an electromegnetic valve which needs 24volt to get excited (to get open) and after excitement it needs only 5 volts to be at open possition or else it will get burnt. so i have planed to make use of PWM logic.(i.e.first ill excite the valve using 100% duty cycle and after that X% duty cycle (which will drop the voltage to 5 volt) )<br /><br />And would u please show me the driver ckt diagram for connecting valves(2 pin ,24volt electromagnetic valve)<br /><br />to get a cleare idea of valve  have a look on the attachment or the link  given here ...<br /><br />http://www.macvalves.com/bullet.pdf<br /><br />                                                          regards <br /><br />                                                                                 caze]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Thu, 26 Jun 2008 12:34:46 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[Hello caze,<br /><br />if you plan to do it in PWM, heres how it can be done :<br /><br /><br /><br /><a class='bbcode' href='http://www.8051projects.net/e107_files/public/1214531016_426_FT10341_valve.jpg' rel='external'  target='_blank'><img src='http://www.8051projects.net/e107_files/public/1214531016_426_FT10341_valve_.jpg' class='bbcode' alt='' width='500' height='278'  />	</a><br /><br /><br />change the output transistor according to your load. its always good to use optocoupler for isolation <br />between micro side and load side <br /><br /><br />all the best<br /><br /><br />Arun]]></description>
<author>Arun Kumar V&lt;nura1002003@nospam.com&gt;</author>
<pubDate>Thu, 26 Jun 2008 18:47:31 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi caze,<br />o.k. now i understood the PWM requirement from ur second post. <br />If ur micro is not being used for any other purpose, then u can simply poll continuously  the two input ports for any change and change the corresponding output port pin. But as far as the PWM is concerned , generating upto 16 PWM outputs from one uC is quite a challenge. But the silver lining is that u require only three states at ur output i.e. 0%,100% and 40% so i think it is just possible.... hmmmm. just give me a couple of days and i will give u the code once i simulate it and also explain the logic. Till then here is the logic i plan to use:<br /><br />define a bit in ur code say PWM_bit. Then using the internal timer, continuously swtich it on/off equivalent to 40% PWM output. Now, poll the inputs and once an input is detected, turn the corresponding output port bit ON for 1.5mS and after that  just copy the PWM_bit status to the port pin.This is just an idea and u require to solve some other issues while writing the code. So start out and let us see...<br />Good luck.<br />]]></description>
<author>pdi33&lt;islurpundalik@nospam.com&gt;</author>
<pubDate>Thu, 26 Jun 2008 20:42:52 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi, <br /><br />        after a long search , i ve got IRFD014 power transistor ,  which has drain current  of ID= 1.7 AMP.<br /> can i use it .]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 08:09:49 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[just confirm whether ur logic is as shown in the figure below<br /><a class='bbcode' href='http://www.8051projects.net/e107_files/public/1214539188_1329_FT10341_untitled.png' rel='external'  target='_blank'><img src='http://www.8051projects.net/e107_files/public/1214539188_1329_FT10341_untitled_.png' class='bbcode' alt='' width='500' height='313'  />	</a><br />]]></description>
<author>pdi33&lt;islurpundalik@nospam.com&gt;</author>
<pubDate>Thu, 26 Jun 2008 20:59:48 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi @ <strong class='bbcode bold'>pdi33</strong>,<br /><br />thanks for the reply. this is exactly what your last post (figure) says.<br /><br />i have written an assembly program (its prototype)to execute my project . have a look on this and give your suggestion.<br /><br />           org 0000h<br />          sjmp 0030h<br />          org 0030h<br />          sjmp here<br />here: mov a,#0ffh<br />          mov p0,a   //port 0 enable<br />          mov p1,a  //port 1 enable<br />          mov a,p0  //read port p0<br />          mov b,p1  //read port p1<br />          mov p2,a  //write to p2<br />          mov p3,b  //write to p3<br />          mov r0,#0ffh  <br />          acall dealy       //call dealy for PWM<br />          sjmp here<br />delay:mov tmod,#01//intialize timer 0<br />          mov tl0,#22h <br />          mov th0,#3fh<br />          setb tr0         // start timer<br />loop: jnb tf0, loop   <br />          clr tr0<br />          clr tf0,#00h<br />          mov p2,#00h<br />           mov p3,#00h<br />loop4: mov tl0,#3fh<br />           mov th0,#2eh<br />           setb tr0<br />loop2: jnb tf0,loop2<br />           clr tr0<br />           clr tf0<br />           mov p2,a<br />           mov p3,b<br />           mov tl0,#0aeh<br />           mov th0,#20h<br />           setb tr0<br />loop3: jnb tf0,loop3<br />           clr tr0<br />           clr tf0<br />           djnz r0,loop4<br />end<br /><br />note : timer values are not yet calculated  . its an approx value.<br /><br />this program is working fine now ...<br /><br />but its so sad to say no boddy repplied for error in this program. <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />  <br />]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Fri, 27 Jun 2008 06:09:54 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi @ Arun ,<br /><br />                   thanks for the help.this is exactly what i wanted.<br /><br />how to choose the value of R1 and R2 , and how about the transister bc337 in your diagram . how to choose them.<br /><br />and is there any 64 pins optocoupler available in the market.?]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Fri, 27 Jun 2008 06:18:08 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[<br /> Hello pdi33,<br /><br /><div class='indent'>But the silver lining is that u require only three states at ur output i.e. 0%,100% and 40% so i think it is just possible.... </div><br /><br />if i am not wrong 40% of 24 volts is 9.6 volts, it should be <strong class='bbcode bold'>21%</strong> of 24volts which would give approx 5.08 V.<br /><br /> caze:  R1 can be 330 ohms, R2 can 2.2K. BC337 is a 800mA, 40Volts one,  iam not sure of any 64 pin Opto in the market but you may have to use individual optos.<br /><br />since you are using all the 32 I/O pins there is no room for additional controls, you can simplify the design if you used 2 micros.<br /><br /><br />Arun]]></description>
<author>Arun Kumar V&lt;nura1002003@nospam.com&gt;</author>
<pubDate>Fri, 27 Jun 2008 07:20:39 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi,<br />     one more query..<br />     do i need to connect a capacitor  between groung and vcc of microcontroller.and between ground and power supply of PCB. <br /><br />if it is so , what should be the values of the cap.<br />]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Fri, 27 Jun 2008 08:37:18 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi @ arun,<br /><br />           the valve  which i am using is of 35 watt,1.43 amp. can i use BC 337  for the same. and how about my program which i have posted before.]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Fri, 27 Jun 2008 08:27:08 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[caze,<br />1.43A is too high a current for a small  transistor like BC337. For that high a current u may have to use a power transistor like 2n3055 or mosfets like like he  IRFXX series. just verify that the transistor /mosfet u use has a greater switching frequency than ur output PWM frequency.<br /><br />As far as the capacitor is concerned, a 0.1uF cap across the uC is always recommended provided it is as close to the uC as possible. This is usually to eliminate the digital noise generated by the high frequency outputs of the uC. But in ur case that woud be hardly a problem as u are not using any analog ckt which may be affected so connecting the cap is only an option  and not neccesarily required. But if the grounds of the +24V supply to the valve and the supply of the uC are same (i.e. if both are derived from the same power source, then the supply of the uC must contain a fast acting capacitor which can reduce the voltage spike  the back emf of the valve coil generates when it is turned  On/OFF as the load is highly inductive and the voltage surge can disrupt the flw of the uC (especially if it is of Atmel make as the AT89XX series does not have a efficient inbuilt  EMI suppression like the phillips series of uCs ).]]></description>
<author>pdi33&lt;islurpundalik@nospam.com&gt;</author>
<pubDate>Fri, 27 Jun 2008 11:42:43 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[<br /> hello caze, <br /><br />No, you can't use a 800mA transi for a 1.5 amp job, it'll fry !  try a mosfet or a power transi like BDX series<br /><br />Arun]]></description>
<author>Arun Kumar V&lt;nura1002003@nospam.com&gt;</author>
<pubDate>Fri, 27 Jun 2008 18:17:03 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[Hi Caze,<br /><br />as a general rule of thumb, you have to use a device which can handle 3-4 times your actual load. your load is 1.4 amp and your switching device is 1.7 amp, and since your load is a electromag device there is bound to be spikes and EMI stuff, so  there should also be a protective diode across just like you have across a relay.   <br /><br />try using IRF540 or IRFZ44 ( price Rs.15-20)<br /><br /><br />Arun]]></description>
<author>Arun Kumar V&lt;nura1002003@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 19:45:30 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi , arun,<br /><br />            but the current rating of these devices are too high.its 28 amp for irf540 and 50 amp for irfz44. will it not burn the valve...<br /><br /><br />and if u have little much time , i would like u to explain me the logic behind the "relationship between the seitching devices current and load current . And  their working too."<br />  <br />i hope these are no silly questions ..<br /><br />                                                                     <br />]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Sun, 29 Jun 2008 04:51:46 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[HI @ Arun,<br /><br />                    the very first post which u have posted me regarding optocoupler , In that the load is connected to the emiter. what if we connect it to the collector. is there any difference ? <br /><br />AND  is the value of R2 depends  transistor ,connected to coupler, if it is so , how to calculate it.<br /><a class='bbcode' href='http://www.8051projects.net/e107_files/public/1214769798_8628_FT10341_1214531016_426_ft10341_valve.jpg' rel='external'  target='_blank'><img src='http://www.8051projects.net/e107_files/public/1214769798_8628_FT10341_1214531016_426_ft10341_valve_.jpg' class='bbcode' alt='' width='500' height='278'  />	</a><br />]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Sun, 29 Jun 2008 13:03:18 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[<br />Hi Caze,<br /><br />you can connect it that way, and you need R only in case of mosfet and not transistor<br /><br />it can be of 100k-1meg value. for R2 you can use 10k. <br /><br /><div class='indent'>but the current rating of these devices are too high.its 28 amp for irf540 and 50 amp for irfz44. will it not burn the valve...</div><br /><br />thats really silly, there is no harm in using a higher rated device, since you are using PWM there will be rapid Switching On and Off the Load which results in EMI and high voltage spikes across the load. <br /><br />by using  a higher rating you have two advantages:<br /><br />1) the mosfet or transi remains cool, no heat sink is required<br />2) Mosfet/transis operates at a  safe limit <br /><br />may be you haven't noticed  the Thanks button, use it if the replies helped you<br /><br /><br />Arun<br /><br />]]></description>
<author>Arun Kumar V&lt;nura1002003@nospam.com&gt;</author>
<pubDate>Sun, 29 Jun 2008 14:33:21 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[Caze,it's typical of inductive loads to draw a pull-in current of ~10 to 20 times the hold current.So the mosfet suggested by Arun is just apt.With inductive loads it's always wise to have some headroom.]]></description>
<author>sashijoseph&lt;sashijoseph@nospam.com&gt;</author>
<pubDate>Sun, 29 Jun 2008 23:31:16 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi sashijoseph,<br /><br />                 would u please be more clear for your last post .i m unable to make sense of the last sentanse. and  also ""apt."""<br />]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Mon, 30 Jun 2008 05:32:01 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi @ arun,<br /><br />             my silly question was  not  that  <img src='http://www.8051projects.net/e107_images/emotes/yahoo/2.gif' alt='' style='vertical-align:middle; border:0' />  <br /><br />           i mean what i wantd to know is .."" Is there any procedure/rule/formula to determine the values of driver MOSFET depending on load.?"" <br /> <img src='http://www.8051projects.net/e107_images/emotes/yahoo/7.gif' alt='' style='vertical-align:middle; border:0' />  <br />Like  while  determining the GENERAL TRANSISTOR for a load  we do following<br />1> transistor current must be greater then load current.<br />2>transistor min. current gain must be 5 times the load crt. devided by max. IC crt.<br />3>Rb=(Vc x Hfe)/(5 x Ic)   *Vc=IC supply voltage.<br />or  Rb=(.2 x Rl x Hfe)<br /><br /> <img src='http://www.8051projects.net/e107_images/emotes/yahoo/4.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Mon, 30 Jun 2008 05:51:02 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi @ arun ,<br /><br /> i am so sorry for my last post.. i would't have post like that ..<br /><br />its was really a stupid thing done by me ..<br /><br />m so sory for that....]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Fri, 04 Jul 2008 11:24:17 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi caze,<br /><br />you don't have to be too formal, i was just trying to emphasize  that some times these things are not mentioned in any text books and you have to rely on your experience and gut feeling.<br /><br />the mosfets i suggested are used extensively in all branded and unbranded Power Inverters and are available in plenty and they suit your task.<br /><br />and what is the progress in the project<br /><br /><br />Arun]]></description>
<author>Arun Kumar V&lt;nura1002003@nospam.com&gt;</author>
<pubDate>Sun, 06 Jul 2008 19:31:03 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[hi  everyone ,<br /><br />                       my project is finished and its in final stage .<br /> thanks to everyone for their help and time... <img src='http://www.8051projects.net/e107_images/emotes/yahoo/69.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>caze&lt;rajeev.caze@nospam.com&gt;</author>
<pubDate>Sat, 02 Aug 2008 05:36:45 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[<br /> <br /> Hello Caze,<br /><br /> Congrats on completion of your project ! <br /><br /><br /><br /><br />Arun]]></description>
<author>Arun Kumar V&lt;nura1002003@nospam.com&gt;</author>
<pubDate>Sun, 03 Aug 2008 00:13:39 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
						<item>
						<title>Re: shorting mechine control using AT89C51</title>
<link>http://www.8051projects.net/forum-t10341.html</link>
<description><![CDATA[Congrats caze <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' /> <br />Do not forget to publish it here on 8051projects.net <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>Mon, 04 Aug 2008 07:12:44 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10341.html</guid>
</item>
				</channel>
				</rss>