<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>DUVIT&#039;s Blog</title>
	<atom:link href="http://duvit.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://duvit.wordpress.com</link>
	<description>Our NXT projects</description>
	<lastBuildDate>Sun, 14 Nov 2010 12:23:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='duvit.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a87ce3722b6f5b0fc7ad1d3c956748a1?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>DUVIT&#039;s Blog</title>
		<link>http://duvit.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://duvit.wordpress.com/osd.xml" title="DUVIT&#039;s Blog" />
	<atom:link rel='hub' href='http://duvit.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Binary Calculator</title>
		<link>http://duvit.wordpress.com/2010/11/14/binary-calculator/</link>
		<comments>http://duvit.wordpress.com/2010/11/14/binary-calculator/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 12:23:15 +0000</pubDate>
		<dc:creator>DUVIT</dc:creator>
				<category><![CDATA[NXT]]></category>
		<category><![CDATA[RobotC]]></category>

		<guid isPermaLink="false">http://duvit.wordpress.com/?p=33</guid>
		<description><![CDATA[We have just finished our new project: an NXT Binary Calculator built with a single NXT 2.0 kit and some standard 4&#215;2 LEGO bricks (actually, anything with colors will do). We have both designed and programmed the robot (using RobotC). Here are some pictures of the Calculator: First of all, to understand how the robot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=33&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We have just finished our new project: an NXT Binary Calculator built with a single NXT 2.0 kit and some standard 4&#215;2 LEGO bricks (actually, anything with colors will do). We have both designed and programmed the robot (using <a href="http://robotc.net" target="_blank">RobotC</a>).</p>
<p>Here are some pictures of the Calculator:</p>
<p style="text-align:center;"><a href="http://duvit.files.wordpress.com/2010/11/binarycalculator1.jpg"><img class="alignnone size-medium wp-image-37" title="BinaryCalculator1" src="http://duvit.files.wordpress.com/2010/11/binarycalculator1.jpg?w=300&#038;h=203" alt="" width="300" height="203" /></a><a href="http://duvit.files.wordpress.com/2010/11/binarycalculator2.jpg"><img class="alignnone size-medium wp-image-38" title="BinaryCalculator2" src="http://duvit.files.wordpress.com/2010/11/binarycalculator2.jpg?w=300&#038;h=229" alt="" width="300" height="229" /></a><a href="http://duvit.files.wordpress.com/2010/11/binarycalculator3.jpg"><img class="alignnone size-medium wp-image-39" title="BinaryCalculator3" src="http://duvit.files.wordpress.com/2010/11/binarycalculator3.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>First of all, to understand how the robot works, you have to know what <span style="color:#ff0000;">binary</span> numbers are.</p>
<p>A binary number is written using only two different digits (0, 1) whereas the decimal system uses ten (0 to 9).</p>
<p>To see how it is written, let&#8217;s take an example: <span style="color:#00ff00;">10010110</span> (which in fact is 150 in decimal).</p>
<p>Every digit represents a power of two. The first digit from the right is multiplied by 2^0, the second is multiplied by 2^1 and so on.</p>
<p>Thus, this number is equals to: <span style="color:#00ff00;">1</span>*<span style="color:#ff0000;">2</span>^7 + <span style="color:#00ff00;">0</span>*<span style="color:#ff0000;">2</span>^6 +<span style="color:#00ff00;"> 0</span>*<span style="color:#ff0000;">2</span>^5 + <span style="color:#00ff00;">1</span>*<span style="color:#ff0000;">2</span>^4 +<span style="color:#00ff00;"> 0</span>*<span style="color:#ff0000;">2</span>^3 +<span style="color:#00ff00;"> 1</span>*<span style="color:#ff0000;">2</span>^2 + <span style="color:#00ff00;">1</span>*<span style="color:#ff0000;">2</span>^1 +<span style="color:#00ff00;"> 0</span>*<span style="color:#ff0000;">2</span>^0 = 128 + 16 + 4 + 2 = <span style="text-decoration:underline;">150</span> (this also equals 1 * 10^2 + 5 * 10^1 + 0 * 10^0)</p>
<p>Here, we will use an 8 bit number which uses up to 8 digits. The biggest number will be 255 (11111111 in binary) and the smallest will be 0 (00000000 in binary).</p>
<p>To represent the number and operations (which will be ADD, SUBTRACT, MULTIPLY and DIVIDE), we will use a color code which is as follows:</p>
<ul>
<li>RED = 1</li>
<li>BLUE = 0</li>
<li>RED = ADD</li>
<li>BLUE = SUBTRACT</li>
<li>YELLOW = MULTIPLY</li>
<li>WHITE = DIVIDE</li>
</ul>
<p>The LEGO Color sensor will read the colors and convert them to numbers or operations after the user inputs numbers and operator as follows:</p>
<p><a href="http://duvit.files.wordpress.com/2010/11/binarycalculatorexplication1.jpg"><img class="size-medium wp-image-46 aligncenter" title="BinaryCalculatorExplication" src="http://duvit.files.wordpress.com/2010/11/binarycalculatorexplication1.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>By default, the Color Sensor will read 0 and if there is no operation it will show &#8220;None&#8221; and end the program. The NXT screen will show information such as the read number (first in decimal, then in binary) and the total (first in decimal, then in binary). It will also show what it is reading. Please note that the Total can exceed 255 and can be less that 0.</p>
<p>This is a video showing the robot in action:</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='600' height='368' src='http://www.youtube.com/embed/b5aXYc_-ZNU?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<p>You can download the LDD file <a href="http://www.archive-host.com/count-657181-BinaryCalculator.7z">here</a> (.7z) or <a href="http://www.archive-host.com/count-657183-BinaryCalculator.zip">here</a> (.zip) and the RobotC source-code <a href="http://www.archive-host.com/count-657187-BinaryCalculator.c">here</a>. I have broken the robot into several groups within the LDD file, it should be fairly trivial to reassemble it using the pictures.</p>
<p>All comments are welcome and if you wish to contact me, you can send me an e-mail at duvit47@gmail.com.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/duvit.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/duvit.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/duvit.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/duvit.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/duvit.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/duvit.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/duvit.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/duvit.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/duvit.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/duvit.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/duvit.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/duvit.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/duvit.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/duvit.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=33&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://duvit.wordpress.com/2010/11/14/binary-calculator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/27ef50f765859621c2cc33234c550e58?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">duvit</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/11/binarycalculator1.jpg?w=300" medium="image">
			<media:title type="html">BinaryCalculator1</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/11/binarycalculator2.jpg?w=300" medium="image">
			<media:title type="html">BinaryCalculator2</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/11/binarycalculator3.jpg?w=300" medium="image">
			<media:title type="html">BinaryCalculator3</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/11/binarycalculatorexplication1.jpg?w=300" medium="image">
			<media:title type="html">BinaryCalculatorExplication</media:title>
		</media:content>
	</item>
		<item>
		<title>NXT-G to RobotC</title>
		<link>http://duvit.wordpress.com/2010/08/21/nxt-g-to-robotc/</link>
		<comments>http://duvit.wordpress.com/2010/08/21/nxt-g-to-robotc/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 09:43:19 +0000</pubDate>
		<dc:creator>DUVIT</dc:creator>
				<category><![CDATA[NXT]]></category>
		<category><![CDATA[NXT-G]]></category>
		<category><![CDATA[RobotC]]></category>

		<guid isPermaLink="false">http://duvit.wordpress.com/?p=24</guid>
		<description><![CDATA[Can RobotC do everything NXT-G can? I&#8217;ve decided to put RobotC to the test by &#8220;translating&#8221; every program you can find in NXT-G to RobotC. I&#8217;ve built, programmed and tested every robot using the two programming languages. You can download the RobotC programs here (.7z) or here (.zip). I think this could help new RobotC [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=24&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Can <a href="http://robotc.net">RobotC</a> do everything NXT-G can?</p>
<p>I&#8217;ve decided to put RobotC to the test by &#8220;translating&#8221; every program you can find in NXT-G to RobotC.</p>
<p>I&#8217;ve built, programmed and tested every robot using the two programming languages. You can download the RobotC programs <a href="http://www.archive-host.com/compteur.php?url=http://sd-1.archive-host.com/membres/up/31076457715380427/NXT/SourceFiles/NXT-G_to_RobotC.7z">here</a> (.7z) or <a href="http://www.archive-host.com/compteur.php?url=http://sd-1.archive-host.com/membres/up/31076457715380427/NXT/SourceFiles/NXT-G_to_RobotC.zip">here</a> (.zip).</p>
<p>I think this could help new RobotC users since it shows them how to put a simple code together. That is why I used several different programming techniques while translating. (use of synchronising motors, switches etc.)</p>
<p>I have put several comments to help newbies understand how the program works.</p>
<p>While doing this, I had encountered several problems that might be of interest to RobotC developers:</p>
<p>- nMotorEncoderTarget isn&#8217;t very precise while running at hight speed (other methods such as the while(nMotorEncoder &lt; Target) cause the same issues).</p>
<p>- When you stop a motor, it takes a lot of time to stop while running at hight speed.</p>
<p>- The timers aren&#8217;t very precise (try and test the RobogatorJaw.c program with both powers at 75).</p>
<p>All this shows us many things, such as:</p>
<p>-RobotC can indeed do what NXT-G can.</p>
<p>-RobotC is less precise than NXT-G but RobotC developers are still working on RobotC for constant improvement.</p>
<p>If you want more NXT software comparisions, you might want to see <a href="http://www.teamhassenplug.org/NXT/NXTSoftware.html">this</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/duvit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/duvit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/duvit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/duvit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/duvit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/duvit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/duvit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/duvit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/duvit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/duvit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/duvit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/duvit.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/duvit.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/duvit.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=24&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://duvit.wordpress.com/2010/08/21/nxt-g-to-robotc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/27ef50f765859621c2cc33234c550e58?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">duvit</media:title>
		</media:content>
	</item>
		<item>
		<title>Shooter</title>
		<link>http://duvit.wordpress.com/2010/08/15/shooter/</link>
		<comments>http://duvit.wordpress.com/2010/08/15/shooter/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 13:04:14 +0000</pubDate>
		<dc:creator>DUVIT</dc:creator>
				<category><![CDATA[NXT]]></category>
		<category><![CDATA[NXTcam]]></category>
		<category><![CDATA[RobotC]]></category>
		<category><![CDATA[Sensors]]></category>

		<guid isPermaLink="false">http://duvit.wordpress.com/?p=10</guid>
		<description><![CDATA[This is our first project using the NXTcam v3 from mindsensors.com. The aim of this bot is to find and shoot down three red targets. It&#8217;s programmed with RobotC. The design is the Multi-Bot by Dave Parker from nxtprograms.com (except for the NXTcam module and the LEGO Color Sensor). It can be built using a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=10&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is our first project using the NXTcam v3 from <a href="http://mindsensors.com" target="_blank">mindsensors.com</a>.</p>
<p>The aim of this bot is to find and shoot down three red targets. It&#8217;s programmed with <a href="http://robotc.net" target="_blank">RobotC</a>.</p>
<p>The design is the Multi-Bot by Dave Parker from <a href="http://nxtprograms.com" target="_blank">nxtprograms.com</a> (except for the NXTcam module and the LEGO Color Sensor). It can be built using a single NXT 2.0 set plus the NXTcam v3.</p>
<p>Here are some pictures and a video of the robot:</p>

<a href='http://duvit.wordpress.com/2010/08/15/shooter/nxtcammoduleback/' title='NXTcamModuleBack'><img data-attachment-id='11' data-orig-size='2012,1798' data-liked='0'width="150" height="134" src="http://duvit.files.wordpress.com/2010/08/nxtcammoduleback.jpg?w=150&#038;h=134" class="attachment-thumbnail" alt="NXTcamModuleBack" title="NXTcamModuleBack" /></a>
<a href='http://duvit.wordpress.com/2010/08/15/shooter/nxtcammodulefront/' title='NXTcamModuleFront'><img data-attachment-id='12' data-orig-size='2026,1998' data-liked='0'width="150" height="147" src="http://duvit.files.wordpress.com/2010/08/nxtcammodulefront.jpg?w=150&#038;h=147" class="attachment-thumbnail" alt="NXTcamModuleFront" title="NXTcamModuleFront" /></a>
<a href='http://duvit.wordpress.com/2010/08/15/shooter/shooter/' title='Shooter'><img data-attachment-id='13' data-orig-size='3648,2736' data-liked='0'width="150" height="112" src="http://duvit.files.wordpress.com/2010/08/shooter.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Shooter" title="Shooter" /></a>
<a href='http://duvit.wordpress.com/2010/08/15/shooter/shooterfront/' title='ShooterFront'><img data-attachment-id='14' data-orig-size='2287,3146' data-liked='0'width="109" height="150" src="http://duvit.files.wordpress.com/2010/08/shooterfront.jpg?w=109&#038;h=150" class="attachment-thumbnail" alt="ShooterFront" title="ShooterFront" /></a>
<a href='http://duvit.wordpress.com/2010/08/15/shooter/shooterleft/' title='ShooterLeft'><img data-attachment-id='15' data-orig-size='2704,2320' data-liked='0'width="150" height="128" src="http://duvit.files.wordpress.com/2010/08/shooterleft.jpg?w=150&#038;h=128" class="attachment-thumbnail" alt="ShooterLeft" title="ShooterLeft" /></a>
<a href='http://duvit.wordpress.com/2010/08/15/shooter/shooterright/' title='ShooterRight'><img data-attachment-id='16' data-orig-size='3648,2736' data-liked='0'width="150" height="112" src="http://duvit.files.wordpress.com/2010/08/shooterright.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="ShooterRight" title="ShooterRight" /></a>
<a href='http://duvit.wordpress.com/2010/08/15/shooter/shootertop/' title='ShooterTop'><img data-attachment-id='17' data-orig-size='3648,2736' data-liked='0'width="150" height="112" src="http://duvit.files.wordpress.com/2010/08/shootertop.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="ShooterTop" title="ShooterTop" /></a>

<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='600' height='368' src='http://www.youtube.com/embed/AEhfYkkPRLY?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<p>The robot searches and detects red targets made out of LEGOs, it then moves into position as follows:</p>
<p>- It aims at the center of the target</p>
<p>- It moves forward or backward until the height of the target is right.</p>
<p>If the robot hits anything with the two bumpers, it will move out of the way. The robot will turn on a different LED on the Color Sensor depending on the situation:</p>
<p>-Green while searching.</p>
<p>-Blue while aiming.</p>
<p>-Red while firing (blinking at first).</p>
<p>You can download the source files <a href="http://www.archive-host.com/compteur.php?url=http://sd-1.archive-host.com/membres/up/31076457715380427/NXT/SourceFiles/Shooter.c">here</a>.</p>
<p>All comments are welcome and if you wish to contact me, you can send me an e-mail at duvit47@gmail.com.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/duvit.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/duvit.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/duvit.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/duvit.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/duvit.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/duvit.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/duvit.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/duvit.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/duvit.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/duvit.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/duvit.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/duvit.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/duvit.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/duvit.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=10&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://duvit.wordpress.com/2010/08/15/shooter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/27ef50f765859621c2cc33234c550e58?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">duvit</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/08/nxtcammoduleback.jpg?w=150" medium="image">
			<media:title type="html">NXTcamModuleBack</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/08/nxtcammodulefront.jpg?w=150" medium="image">
			<media:title type="html">NXTcamModuleFront</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/08/shooter.jpg?w=150" medium="image">
			<media:title type="html">Shooter</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/08/shooterfront.jpg?w=109" medium="image">
			<media:title type="html">ShooterFront</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/08/shooterleft.jpg?w=150" medium="image">
			<media:title type="html">ShooterLeft</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/08/shooterright.jpg?w=150" medium="image">
			<media:title type="html">ShooterRight</media:title>
		</media:content>

		<media:content url="http://duvit.files.wordpress.com/2010/08/shootertop.jpg?w=150" medium="image">
			<media:title type="html">ShooterTop</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome</title>
		<link>http://duvit.wordpress.com/2010/07/06/welcome/</link>
		<comments>http://duvit.wordpress.com/2010/07/06/welcome/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 12:12:31 +0000</pubDate>
		<dc:creator>DUVIT</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://duvit.wordpress.com/?p=8</guid>
		<description><![CDATA[Hi all and welcome to our blog, We will show you all of our projects in this blog, and we hope you will enjoy it here, regards, DRV47 and Odysseus, a.k.a DUVIT<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=8&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi all and welcome to our blog,</p>
<p>We will show you all of our projects in this blog, and we hope you will enjoy it here,</p>
<p>regards,</p>
<p>DRV47 and Odysseus, a.k.a DUVIT</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/duvit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/duvit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/duvit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/duvit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/duvit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/duvit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/duvit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/duvit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/duvit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/duvit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/duvit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/duvit.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/duvit.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/duvit.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=duvit.wordpress.com&amp;blog=14550347&amp;post=8&amp;subd=duvit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://duvit.wordpress.com/2010/07/06/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/27ef50f765859621c2cc33234c550e58?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">duvit</media:title>
		</media:content>
	</item>
	</channel>
</rss>
