<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ilabs India</title>
	<atom:link href="http://www.ilabsindia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ilabsindia.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 17 May 2012 18:06:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Graphical Lcd &amp;Touch Screen</title>
		<link>http://www.ilabsindia.com/2012/05/graphical-lcd-touch-screen/</link>
		<comments>http://www.ilabsindia.com/2012/05/graphical-lcd-touch-screen/#comments</comments>
		<pubDate>Tue, 15 May 2012 09:42:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[graphical lcd & touch screen]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=1159</guid>
		<description><![CDATA[AIM: To interface graphical LCD with touchscreen using ATMEGA16 COMPONENTS: 4 wire resistive touchscreen, Avr developmentboard, graphical Lcd screen. DESCRIPTION:       4 WIRE RESISTIVE TOUCH SCREEN                             The PSP touchscreen is a 4 wire analog resistive touchscreen. This means by touching the<a href="http://www.ilabsindia.com/2012/05/graphical-lcd-touch-screen/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p><strong>AIM</strong>: To interface graphical LCD with touchscreen using</p>
<p>ATMEGA16</p>
<p><strong>COMPONENTS:</strong></p>
<p>4 wire resistive touchscreen,</p>
<p>Avr developmentboard,</p>
<p>graphical Lcd screen.</p>
<p><strong>DESCRIPTION:</strong></p>
<p><em>      4 WIRE RESISTIVE TOUCH SCREEN      </em></p>
<p><em></em>                      The PSP touchscreen is a 4 wire analog resistive touchscreen. This means by touching the screen at one point, a resistance between each edge is formed for both the x and y axises. As you move your finger or stylus across the screen the resistance changes between opposing sides of each axis. By applying a voltage across each axis, a changing resistance results in a changing voltage. Thus a simple ADC on a microcontroller can be used to find x and y positions.</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/TS_pin-config.jpg"><img class="alignnone size-medium wp-image-1171" title="TS_pin-config" src="http://www.ilabsindia.com/wp-content/uploads/2012/05/TS_pin-config-300x250.jpg" alt="" width="300" height="250" /></a></p>
<p>The four pins control 4 buss bars located around the peripheral of the touchscreen. In order to read either an x or a y position, two opposing bars need to be powered and a third orthogonal bar is used to measure the divided voltage.</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/bussbarslarge.jpg"><img class="alignnone size-medium wp-image-1172" title="bussbarslarge" src="http://www.ilabsindia.com/wp-content/uploads/2012/05/bussbarslarge-300x211.jpg" alt="" width="300" height="211" /></a></p>
<p>&nbsp;</p>
<p>This configuration means that the voltage, ground, and sense bar need to be continually switched in order to quickly read x and y positions.In our code v will need to switch between the x and y pin assignments in order to quickly read the x and y positions.</p>
<p>For this use 2 pins of port A as adc input and 2 pins of port D for +5V. Then write code such that it gives digital value of the x and y coordinate of the touchscreen on the lcd screen when the touchscreenscreen is touched at a particular point.</p>
<p><strong>ALGORITHM:</strong></p>
<p><em>FOR X-CORDINATE : </em></p>
<p>Declare x1 and x2 as output pins.</p>
<p>Declare y1 and y2 pins as input pins and take adc input from the pin connected to the adc port.</p>
<p><em> </em><em>FOR </em><em> </em><em>Y-CORDINATE:</em></p>
<p><em></em>Declare y1 and y2 as output pins.</p>
<p>Declare x1  and x2 as input pins and take adc input from the pin connected</p>
<p>to the adc port.</p>
<p><em> </em></p>
<p><em>       </em></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="128"></td>
<td valign="top" width="128"><strong>X1</strong></td>
<td valign="top" width="128"><strong>       X2</strong></td>
<td valign="top" width="128"><strong>        Y1</strong></td>
<td valign="top" width="128"><strong>       Y2</strong></td>
</tr>
<tr>
<td valign="top" width="128"><strong>TO MEASURE </strong><strong>X CORDINATE</strong></td>
<td valign="top" width="128">LOGIC HIGH</p>
<p>&nbsp;</td>
<td valign="top" width="128">LOGIC LOW</td>
<td valign="top" width="128">_ _ _</td>
<td valign="top" width="128">ADC</td>
</tr>
<tr>
<td valign="top" width="128"><strong>TO MEASURE</strong><strong>Y CORDINATE</strong></td>
<td valign="top" width="128">ADC</td>
<td valign="top" width="128">_ _ _</td>
<td valign="top" width="128">LOGIC LOW</td>
<td valign="top" width="128">LOGIC HIGH</p>
<p>&nbsp;</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>INTERFACING WITH ATMEGA16 :</strong></p>
<p><strong>            </strong>In here connect x1 and y2 to the adc port of atmega16. In atmega16 full port A is adc port select any two pins as the required pins.</p>
<p>For x2 and y1 use pins of port D for giving high logic.</p>
<p>In order to read the value the DDR(direct addressing resistor) of resp. pin of port A is kept low. However while taking output the value of DDR is kept high like consider while measuring X coordinate : the DDR values of x1 and x2 are high and the value of DDR of y2 is low.</p>
<p>Also for PORT specifications consider while measuring X co-ordinate : the PORT  pin value of x2 is high and the value of PORT pin of x1 and y2 is low.</p>
<p>When code is written it is written in such a manner that it reads x value and then the y value so we have to continuously between the DDR values and the PORT values.</p>
<p><strong> </strong><strong>PHOTOS OF LCD READING ADC VALUES:</strong></p>
<p>&nbsp;</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02549.jpg"><img class="alignnone size-medium wp-image-1174" title="DSC02549" src="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02549-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>&nbsp;</p>
<p><strong><em>BELOW ARE THE PICS FOR THE RESP. TOUCHS MADE ON THE SCREEN</em></strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="48">1</td>
<td valign="top" width="174"></td>
<td valign="top" width="54">2</td>
<td valign="top" width="54"></td>
</tr>
<tr>
<td valign="top" width="48"></td>
<td valign="top" width="174"></td>
<td valign="top" width="54"></td>
<td valign="top" width="54"><strong><em>Output</em></strong><strong><em>wire</em></strong></td>
</tr>
<tr>
<td valign="top" width="48">4</td>
<td valign="top" width="174"></td>
<td valign="top" width="54">3</td>
<td valign="top" width="54"></td>
</tr>
</tbody>
</table>
<p>1.</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02550.jpg"><img class="alignnone size-medium wp-image-1175" title="DSC02550" src="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02550-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>2.</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02551.jpg"><img class="alignnone size-medium wp-image-1176" title="DSC02551" src="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02551-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>3.</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02552.jpg"><img class="alignnone size-medium wp-image-1177" title="DSC02552" src="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02552-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>4.</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02553.jpg"><img class="alignnone size-medium wp-image-1178" title="DSC02553" src="http://www.ilabsindia.com/wp-content/uploads/2012/05/DSC02553-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2012/05/graphical-lcd-touch-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced Embedded System Workshop</title>
		<link>http://www.ilabsindia.com/2012/05/advanced-embedded-systems-application-design-workshop/</link>
		<comments>http://www.ilabsindia.com/2012/05/advanced-embedded-systems-application-design-workshop/#comments</comments>
		<pubDate>Sat, 05 May 2012 14:21:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=1018</guid>
		<description><![CDATA[    Learn Embedded Systems from the electronics fundamentals to intricate embedded protocol
    You will go through Embedded Application Design Process
    You will be executing an embedded application design project through the workshop
    You will be given access to ilabs Embedded Hardware resource

Batch 1: 14th May - 14 June]]></description>
			<content:encoded><![CDATA[<p align="center"><strong><a href="http://www.ilabsindia.com/wp-content/uploads/2012/02/For-Website-page-001.jpg"><img class="alignleft size-large wp-image-1109" title="For Website-page-001" src="http://www.ilabsindia.com/wp-content/uploads/2012/02/For-Website-page-001-791x1024.jpg" alt="" width="791" height="1024" /></a></strong></p>
<p align="center"><a title="Register To Advanced Embedded System Workshop" href="http://www.ilabsindia.com/register/" target="_blank"><img class="alignleft size-full wp-image-1115" title="Or_RegisterButton_lt" src="http://www.ilabsindia.com/wp-content/uploads/2012/02/Or_RegisterButton_lt.png" alt="" width="314" height="74" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2012/05/advanced-embedded-systems-application-design-workshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Advanced ARM Workshop</title>
		<link>http://www.ilabsindia.com/2012/05/advanced-arm-workshop-2/</link>
		<comments>http://www.ilabsindia.com/2012/05/advanced-arm-workshop-2/#comments</comments>
		<pubDate>Sat, 05 May 2012 11:25:48 +0000</pubDate>
		<dc:creator>Hars</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=1128</guid>
		<description><![CDATA[An Advanced ARM Based Embedded System Workshop Is Gonna Start From 1st Of June 2012, Don't Miss It !!!.]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><a style="text-align: -webkit-auto;" href="http://www.ilabsindia.com/wp-content/uploads/2012/02/For-Website-page-002.jpg"><img class="alignleft size-large wp-image-1110" title="For Website-page-002" src="http://www.ilabsindia.com/wp-content/uploads/2012/02/For-Website-page-002-791x1024.jpg" alt="" width="791" height="1024" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://www.ilabsindia.com/register/" target="_blank"><img class="size-medium wp-image-1115" title="Or_RegisterButton_lt" src="http://www.ilabsindia.com/wp-content/uploads/2012/02/Or_RegisterButton_lt-300x70.png" alt="" width="300" height="70" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2012/05/advanced-arm-workshop-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newton in Heights</title>
		<link>http://www.ilabsindia.com/2012/02/newton-in-heights/</link>
		<comments>http://www.ilabsindia.com/2012/02/newton-in-heights/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 14:25:22 +0000</pubDate>
		<dc:creator>Aditya</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Accelerometer]]></category>
		<category><![CDATA[Height]]></category>
		<category><![CDATA[Laser]]></category>
		<category><![CDATA[Newton]]></category>
		<category><![CDATA[Servo]]></category>
		<category><![CDATA[Survey]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=1063</guid>
		<description><![CDATA[Howdy RoboFreaks, &#160; Our Aim behind Building &#8220;Newton In Heights&#8221; was to Design of an Instrument which could give Dimensions &#38; Deformation of any terrestrial structure, mainly for the application of the civil engineers for getting the dimensions of any building or structure. &#160; Newton in Heights is an instrument which can be used to measure<a href="http://www.ilabsindia.com/2012/02/newton-in-heights/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Howdy RoboFreaks,</p>
<p>&nbsp;</p>
<p>Our Aim behind Building &#8220;Newton In Heights&#8221; was to Design of an Instrument which could give Dimensions &amp; Deformation of any terrestrial structure, mainly for the application of the civil engineers for getting the dimensions of any building or structure.</p>
<p>&nbsp;</p>
<p>Newton in Heights is an instrument which can be used to measure dimensions of any terrestrial structures like height, length, width, angle of inclination etc. The basic construction of this instrument is easily operable and rigid in nature. There are many instruments available in market which can measure the dimensions of structures like Theodolite and Total Stations but major drawback in using these instruments is there high cost, complexity and difficulty to operate.</p>
<p>&nbsp;</p>
<p>If measuring is done manually it is very tedious and time taking job which can be done in the fraction of second using this device. Our main objective behind designing this is to measure all dimensions from a remote distant place and thereby creating basic block structure using the co-ordinates in any structure designing software like AutoCAD, etc. with simple calculations considering minimal cost, maximum accuracy and minimal human intervention.</p>
<p>&nbsp;</p>
<p>Our Approach</p>
<ul>
<li>To Reduce Human Intervention during Surveying</li>
<li>To Reduce Cost Of the instrument as compared to Theodolite &amp; Total Station</li>
<li>To Build an instrument considering college level experiments &amp; field work</li>
<li>To build a device that has maximum accuracy , minimal cost &amp; minimal human interventions</li>
</ul>
<div></div>
<p>Our Objective</p>
<ul>
<li>To calculate height, length and width.</li>
<li>To calculate the degree of deformation in the structure.</li>
<li>To calculate the angle of inclination &amp; elevation.</li>
<li>To locate the (x, y, z) co-ordinates of the basic block structure.</li>
<li>Design the block structure based on the co-ordinates in any structure designing software like AutoCAD.</li>
<li>To operate the device using wireless remote control.</li>
</ul>
<div></div>
<p>&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;Stay Tuned for the Video Of  The Newton in Heights&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2012/02/newton-in-heights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robotics for School Students</title>
		<link>http://www.ilabsindia.com/2012/02/robotics-for-school-students/</link>
		<comments>http://www.ilabsindia.com/2012/02/robotics-for-school-students/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 04:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=1037</guid>
		<description><![CDATA[This summer with a new approach

....stay tuned]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ilabsindia.com/wp-content/uploads/2012/02/website_update_change.jpg"><img class="alignleft size-full wp-image-1090" title="website_update_change" src="http://www.ilabsindia.com/wp-content/uploads/2012/02/website_update_change.jpg" alt="" width="768" height="727" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>

<div class="ngg-galleryoverview" id="ngg-gallery-7-1037">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-49" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0063.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0063" alt="img_0063" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0063.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0064.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0064" alt="img_0064" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0064.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0065.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0065" alt="img_0065" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0065.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0069.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0069" alt="img_0069" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0069.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0070.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0070" alt="img_0070" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0070.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0071.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0071" alt="img_0071" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0071.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0072.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0072" alt="img_0072" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0072.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-56" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0073.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0073" alt="img_0073" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0073.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0074.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0074" alt="img_0074" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0074.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-58" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0075.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0075" alt="img_0075" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0075.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-59" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0076.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0076" alt="img_0076" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0076.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-60" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0089.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0089" alt="img_0089" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0089.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-61" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0090.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0090" alt="img_0090" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0090.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-62" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0091.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0091" alt="img_0091" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0091.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-63" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0092.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0092" alt="img_0092" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0092.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-64" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0124.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0124" alt="img_0124" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0124.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-65" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0125.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0125" alt="img_0125" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0125.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-66" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0126.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0126" alt="img_0126" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0126.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-67" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0127.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0127" alt="img_0127" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0127.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-68" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/img_0128.jpg" title=" " rel="lightbox[set_7]" >
								<img title="img_0128" alt="img_0128" src="http://www.ilabsindia.com/wp-content/gallery/robopravesh-jr-summers-2011/thumbs/thumbs_img_0128.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span class="current">1</span><a class="page-numbers" href="http://www.ilabsindia.com/2012/02/robotics-for-school-students/?nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://www.ilabsindia.com/2012/02/robotics-for-school-students/?nggpage=2">&#9658;</a></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2012/02/robotics-for-school-students/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resources</title>
		<link>http://www.ilabsindia.com/2012/01/resources/</link>
		<comments>http://www.ilabsindia.com/2012/01/resources/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 16:54:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=1133</guid>
		<description><![CDATA[Advanced Embedded Workshop Resources for the Geeks including basic electronics,intro to micro controllers,advanced tutorials on ADC,USART,I2C/TWI,PWM,etc]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/ILABS-Atmel-AVR-Studio.pdf">ILABS Atmel A</a><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/ILABS-Atmel-AVR-Studio.pdf">VR Studio</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2011/12/AVR-Mini-A102.pdf" target="_blank">Introduction to ilabs A102 Board&#8221;Chotu Shree&#8221;</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/05/Introduction-to-AVR-Microcontrollers1.pdf">Introduction to AVR Microcontrollers</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/01/Introduction-to-Battery.pdf">Introduction to Battery</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/01/Introduction-to-Types-of-Sensors.pdf">Introduction to Types of Sensors</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/01/Introduction-Interfacing-LED-in-AVR.pdf">Introduction &amp; Interfacing LED in AVR</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/01/Introduction-to-I2C.pdf">Introduction to I2C</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/01/Introduction-to-ADC-in-AVR.pdf">Introduction to ADC in AVR</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2012/01/REGISTERS-FOR-ADVANCED-TOPICS.pdf">REGISTERS FOR ADVANCED TOPICS</a></li>
<li><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/CC_module_V1.1.pdf" target="_blank">Introduction To CC2500 Modules</a></li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2012/01/resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Registration Form Doubt Darbar</title>
		<link>http://www.ilabsindia.com/2011/12/925/</link>
		<comments>http://www.ilabsindia.com/2011/12/925/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 12:33:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Registration Forms]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=925</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="https://docs.google.com/a/ilabsindia.com/spreadsheet/embeddedform?formkey=dDVNRXFOYkFJVkU4UGp6SnZoUVdGY2c6MQ" frameborder="0" marginwidth="0" marginheight="0" width="760" height="736"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2011/12/925/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Labyrinth Game</title>
		<link>http://www.ilabsindia.com/2011/11/the-labyrinth-game/</link>
		<comments>http://www.ilabsindia.com/2011/11/the-labyrinth-game/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 07:58:09 +0000</pubDate>
		<dc:creator>Pratik</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=826</guid>
		<description><![CDATA[Aim:- To study servo motors and to create a interesting Labyrinth game. &#160; Video:- &#160; Things Required/Used:- Two Servos, acrylic sheets, ilabs development board, An Joystick and a good Labirinth game(I could not find a good labyrinth game so instead of using a Labyrinth game a mobile phone with motion sensor and Labyrinth game in<a href="http://www.ilabsindia.com/2011/11/the-labyrinth-game/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p><strong>Aim:-</strong> To study servo motors and to create a interesting Labyrinth game.</p>
<p>&nbsp;</p>
<p><strong>Video:-</strong></p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/t7eDg-RfMHg?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><strong><br />
</strong></p>
<p>&nbsp;</p>
<p><strong>Things Required/Used:-</strong> Two Servos, acrylic sheets, ilabs development board, An Joystick and a good Labirinth game(I could not find a good labyrinth game so instead of using a Labyrinth game a mobile phone with motion sensor and Labyrinth game in it was used, thanks to Tushar for providing his phone and let it to stick it to moving platform without which the video would have been incomplete)</p>
<p>&nbsp;</p>
<p>The Code is not really that difficult if you have worked with Servos before its really easy to understand but for those who dont know about servos I would like to give just a little bit information about them.</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/servo.png"><img class="size-medium wp-image-832 aligncenter" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/servo-300x290.png" alt="" width="300" height="290" /></a></p>
<p>A Servo is basically a DC motor with restricted motion (90, 180, 270 deg commanly used) which has circuitary to control its rotation angle in that restricted limit. The Servo used in this Project was a servo with 180 degree angle control(As shown in above image). The Servos have three wires one data, one ground and one supply. Servos angle in very small increment can be controled properly by using proper pulse width at 50Hz frequency. The frequency is set to 50Hz and angle is controled by proper pulse width (or duty cycle) given in data sheets of Servos.</p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/Slide1.jpg"></a><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/Slide1.jpg"><img class="aligncenter size-full wp-image-834" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/Slide1.jpg" alt="" width="672" height="434" /></a></p>
<p>&nbsp;</p>
<p>The Build consists of two servos connected to a moving platform and the moving platform is connected to fixed base using connector which was made using empty refil and paper pins. Most of the body part is made up of black Acrylic.</p>
<p>The joint used to connect moving platform to fixed base was made using straitened safety pins and empty pen refill.(Below are some images of joint).</p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center">Joint below fixed to base</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0763.jpg"><img class="aligncenter size-full wp-image-839" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0763.jpg" alt="" width="622" height="467" /></a></p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center">Joint with attachment made of acrylic to connect to upper base.</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0768.jpg"><img class="aligncenter size-full wp-image-840" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0768.jpg" alt="" width="622" height="467" /></a></p>
<p>&nbsp;</p>
<p>The Joystick gives ananalog values of angle of Tilt in X and in Y direction, which is used to control angle of those two servos so tilting joystick in one direction will tilt the moving platform in same direction(The angle of tilt of Jotstick to moving platform can be adjusted by changing value of one variable in program for smooth operation or for increasing or decreating sensitivity). Below is the image of Joystick used.</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0789.jpg"><img class="aligncenter size-large wp-image-842" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0789-1024x768.jpg" alt="" width="430" height="323" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>Important Advice do not apply much pressure while drilling in Acrylic or it may break, happened with me and if possible use drill with less vibrations.</strong></p>
<p style="text-align: center"><strong><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0771.jpg"><img class="aligncenter size-large wp-image-850" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0771-1024x768.jpg" alt="" width="516" height="388" /></a></strong></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">Image of final version  with body integrate with  ilabs development board inside built and joystick fixed to base.</p>
<p style="text-align: left"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0795.jpg"><img class="aligncenter size-large wp-image-852" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0795-1024x694.jpg" alt="" width="614" height="416" /></a></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">Images after built was completed and Harshad sir and Rishikesh sir enjoying Playing with Labyrinth game&#8230;</p>
<p style="text-align: left"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0800.jpg"><img class="alignleft size-medium wp-image-853" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0800-300x224.jpg" alt="" width="300" height="224" /></a><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0801.jpg"><img class="alignright size-medium wp-image-855" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0801-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0802.jpg"><img class="alignleft size-medium wp-image-859" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0802-300x224.jpg" alt="" width="300" height="224" /></a><a href="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0803.jpg"><img class="alignright size-medium wp-image-860" src="http://www.ilabsindia.com/wp-content/uploads/2011/11/IMG_0803-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2011/11/the-labyrinth-game/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Accelerometer-LED Matrix Game</title>
		<link>http://www.ilabsindia.com/2011/09/accelerometer-led-matrix-game-console/</link>
		<comments>http://www.ilabsindia.com/2011/09/accelerometer-led-matrix-game-console/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 11:29:48 +0000</pubDate>
		<dc:creator>tushar</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=688</guid>
		<description><![CDATA[BY : TUSHAR GUPTA HARDWARE : Remote: 1) Accelerometer 2) iLabs CC Module (ATmega8+CC2500) &#160; Console: 1) 5*7 LED Dot Matrix ( 4 ) 2) iLabs CC Module (ATmega8+CC2500) 3) Microcontroller ( ATmega16 ) &#160; &#160; WORKING : A microcontroller pin may output 5V that drives a single LED through a resistor and to ground.<a href="http://www.ilabsindia.com/2011/09/accelerometer-led-matrix-game-console/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>BY : TUSHAR GUPTA</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/ZGAj4rM5-go?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZGAj4rM5-go?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>HARDWARE : </strong></p>
<p><strong> </strong></p>
<p>Remote:</p>
<p>1) Accelerometer</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image.bmp"><img class="aligncenter size-full wp-image-706" src="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image.bmp" alt="" /></a></p>
<p>2) iLabs CC Module (ATmega8+CC2500)</p>
<p>&nbsp;</p>
<p>Console:</p>
<p>1) 5*7 LED Dot Matrix ( 4 )</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy.bmp"><img class="aligncenter size-full wp-image-704" src="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy.bmp" alt="" /></a></p>
<p>2) iLabs CC Module (ATmega8+CC2500)</p>
<p>3) Microcontroller ( ATmega16 )</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy-2.bmp"><img class="aligncenter size-full wp-image-701" src="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy-2.bmp" alt="" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>WORKING :</strong></p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy-3.bmp"><img class="aligncenter size-full wp-image-702" src="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy-3.bmp" alt="" /></a></p>
<p><strong> </strong></p>
<p>A microcontroller pin may output 5V that drives a single LED through a resistor and to ground.</p>
<p>The LED array arranges LEDs in rows and columns. The LEDs in the grid have their two connections, their cathodes and their anodes, connected to the other LEDs. By making these connections correctly, a microcontroller can drive any one LED on while leaving others off.</p>
<p>The LED at column 1 row 1 would be turned on if positive voltage is applied at C1 while ground is applied to R1. That single LED (C1 R1) would light up.</p>
<p>If, in addition to that, R3 was also at ground potential then the C1 R3 LED would also light.</p>
<p>You might work out that if we were to also light up the C3 R1 LED, that the C3 R3 will also light up, even if we do not wish to see it. There is voltage on C3 and ground on R3, so the LED is going to light itself.</p>
<p>To avoid that problem we can pick either a row or a column to light at a time. In this project, I control one column at a time. The microcontroller displays a pattern on column 1, and then quickly moves to column 2 with a different pattern. The microcontroller moves through all five columns and then continues to cycle over and over. Done slowly this is rather odd looking as only one column is displayed at a time.</p>
<p>But if the cycling happens quickly, then it appears to the human eye that the entire display correctly displays character.</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy-4.bmp"><img class="size-full wp-image-703 aligncenter" src="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-Copy-4.bmp" alt="" width="457" height="302" /></a></p>
<p>I have connected columns of upper two LED grids to the respective columns of the lower LED grids and the rows of the right LED grids to the left LED grids. After these connections, the fours LED Grids together, can be considered similar as a single 10*14 matrix, conceptually similar to a 5*7 matrix.  This combination was necessary as, if not done, the number of pin outs would have exceeded the pins available on the microcontroller (ATmega16).</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-2.bmp"><img class="aligncenter size-full wp-image-705" src="http://www.ilabsindia.com/wp-content/uploads/2011/09/New-Bitmap-Image-2.bmp" alt="" /></a></p>
<p>&nbsp;</p>
<p>The remote consists an accelerometer IC, microcontroller and a CC2500 module. The analog output from the accelerometer IC is fed into the microcontroller. The internal ADC of the microcontroller converts the analog signal to digital which is then spend out wirelessly at the frequency and baud to rate through CC2500 module.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2011/09/accelerometer-led-matrix-game-console/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>RGB LED Project</title>
		<link>http://www.ilabsindia.com/2011/08/rgb-led-project/</link>
		<comments>http://www.ilabsindia.com/2011/08/rgb-led-project/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 01:36:31 +0000</pubDate>
		<dc:creator>Pratik</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[atmega 16]]></category>
		<category><![CDATA[LCD interface]]></category>
		<category><![CDATA[PWM]]></category>
		<category><![CDATA[RGB LED]]></category>

		<guid isPermaLink="false">http://www.ilabsindia.com/?p=650</guid>
		<description><![CDATA[&#160; Aim:- To generate fast PWM and also to create menu driven program using LCD so on time changes are possible without having to plug it to computer again and again to make small changes Components Used:- AVR Atmega 16 development Board, 16×2 LCD , Transistor(2222A), Connecting wires, RGB LED. Working:- Now the most important<a href="http://www.ilabsindia.com/2011/08/rgb-led-project/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/fPtERq2Bvk0?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/fPtERq2Bvk0?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>&nbsp;</p>
<p><strong>Aim:-</strong> To generate fast PWM and also to create menu driven program using LCD so on time changes are possible without having to plug it to computer again and again to make small changes</p>
<p><strong>Components Used:-</strong> AVR Atmega 16 development Board, 16×2 LCD , Transistor(2222A), Connecting wires, RGB LED.</p>
<p><strong>Working:- </strong></p>
<p><strong> </strong>Now the most important thing, you should know what an RBG led really is,</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_0665.jpg"><img class="size-full wp-image-652 aligncenter" src="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_0665.jpg" alt="" width="170" height="161" /></a></p>
<p>RGB stand for colors <strong>R</strong>ed, <strong>G</strong>reen, <strong>B</strong>lue and LED for <strong>L</strong>ight <strong>E</strong>mitting <strong>D</strong>iode, it has four terminals out of a single LED one common(May be common anode or cathode) and other three Terminals to turn on particular color in LED.</p>
<p>&nbsp;</p>
<p>The LED used in this experiment is of common anode mode(shown in Schematic given below) that is anode is common to all three. So to turn on a particular color on RGB LED we have to complete circuit by giving ground to cathode terminal of that color (Anode is always energized through 22 Ohm resistor).</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/08/Schematic.jpg"><img class="alignnone size-full wp-image-653" src="http://www.ilabsindia.com/wp-content/uploads/2011/08/Schematic.jpg" alt="" width="462" height="345" /></a></p>
<p>This is done by using NPN Transistors (2222A), three cathode terminal of RGB LED is connected to tree different Transistors to their collector terminal and emitter is grounded, hence when we give positive pulse to base of transistor(2222A through 1K ohm resistor) cathode of particular color connected to that transistor gets grounded(as Transistor goes from Cut Off state to Saturation state) completing circuitry and remain on as long as positive pulse is given(To know more about this action just google Transistor as a switch)</p>
<p>&nbsp;</p>
<p>Now as we don&#8217;t want to produce only RED, GREEN &amp; BLUE color but produce wide range of different colors by mixing this basic color  so we are using PWM(controlling ON and OFF time of each color)</p>
<p>&nbsp;</p>
<p>For this purpose PWM is generated on three pins(PD4, PD5, PB3) which is fed to base of three different Transistors through 1k Ohm resistor, and LCD is used so that real time changes are possible and also to see what values of PWM gives which color . For example if we want to create purple color we will mix Red and Blue color and adjust their intensity to get proper purple color.</p>
<p>&nbsp;</p>
<p>Few photos of prototype:-</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_0667.jpg"><img class="size-medium wp-image-659 aligncenter" src="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_0667-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: center">A complete view of prototype.</p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center">&nbsp;</p>
<p style="text-align: center"><a href="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_0668.jpg"><img class="size-medium wp-image-661" src="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_0668-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: center">Closer View to Components on Bread board</p>
<p style="text-align: left">(The LED is fitted with a syringe plastic cap just because  it looks good you can try a variety of different things like in video  a cylindrical paper roll is used )</p>
<p>&nbsp;</p>
<p>Now as this was just a prototype the final product was completed soon after experimenting.</p>
<p><a href="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_07271.jpg"><img class="size-medium wp-image-663 aligncenter" src="http://www.ilabsindia.com/wp-content/uploads/2011/08/IMG_07271-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>&nbsp;</p>
<p>In final product instead of using Bread board a zero PCB is used (to avoid loose connections) and fixed tightly to acrylic board using nuts and bolt. Now you can just put variety of things on top of  it what you like to make it more attractive.</p>
<p>&nbsp;</p>
<p><strong>Project Members:- </strong>Pratik Sakode &amp; Pratik Deshmukh.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilabsindia.com/2011/08/rgb-led-project/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

