<?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>Mobile Remote Control Club</title>
	<atom:link href="http://mobileremotecontrol.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mobileremotecontrol.wordpress.com</link>
	<description>Controlling devices, one at a time</description>
	<lastBuildDate>Sun, 11 Dec 2011 15:55:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mobileremotecontrol.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mobile Remote Control Club</title>
		<link>http://mobileremotecontrol.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mobileremotecontrol.wordpress.com/osd.xml" title="Mobile Remote Control Club" />
	<atom:link rel='hub' href='http://mobileremotecontrol.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Arduino 1.0-This fiestly little italian gets an upgrade</title>
		<link>http://mobileremotecontrol.wordpress.com/2011/12/07/arduino-1-0-this-fiestly-little-italian-gets-an-upgrade/</link>
		<comments>http://mobileremotecontrol.wordpress.com/2011/12/07/arduino-1-0-this-fiestly-little-italian-gets-an-upgrade/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 23:02:50 +0000</pubDate>
		<dc:creator>caitlindavey</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://mobileremotecontrol.wordpress.com/?p=97</guid>
		<description><![CDATA[Breaking news in the open-source hardware development world, is the release of Arduino 1.0. I recently used this little giant of a microcontroller in a wireless remote control project. The project though small in scope, utilized the long-standing beta version of the Arduino language. Having little experience with the open-source hardware I am intrigued by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=97&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><img class="aligncenter" title="Arduino board outine" src="http://softwear.cc/book/wp-content/uploads/2009/07/os_arduino_board.png" alt="Arduino board outine" width="400" height="300" />Breaking news in the open-source hardware development world, is the release of Arduino 1.0. I recently used this little giant of a microcontroller in a wireless remote control project. The project though small in scope, utilized the long-standing beta version of the Arduino language. Having little experience with the open-source hardware I am intrigued by the clean up to the Arduino environment and language.</p>
<p><span style="text-decoration:underline;">Shake ups in 1.0</span></p>
<p>The 1.0 environment updates include a new file extension, toolbar icons, and color scheme, as well as a progress bar on compilation and upload. In the creation of the remote-controlled shredder (I know what a practical device for would-be embezzlers or amateur sleuths) my co-creators and I had to try several code sketches before finding one that worked. Each time we uploaded a sketch to the board, we had to wait patiently for the minuscule confirmation message to appear at the bottom page.  The status bar in version 1.0 will be a welcome change for developers with little to no experience working with this or similar devices. The bulk of the 1.0 changes, deservingly, seem to be address the Arduino language. Language changes consist of modifications to the Serial class, the addition of DHCP and DNS support to the Ethernet library, a new SoftwareSerial library, multi-file support in the SD library, modifications to the Wire library and UDP class, and more. Now I don&#8217;t know what ANY of these changes meant, and neither might you, so let me break it down for you.</p>
<p style="text-align:center;"><span style="text-decoration:underline;">Some  Arduino software changes step-by-step </span></p>
<p style="text-align:left;"><img class="aligncenter" title="Takin' one from NKOTB" src="http://images1.fanpop.com/images/photos/2500000/New-Kids-On-The-Block-the-90s-boy-bands-2565666-500-500.jpg" alt="Some  Arduino software changes step-by-step" width="500" height="500" /></p>
<p style="text-align:left;">File extension for sketches has changed from .pde to .ino, to avoid conflicts with the Processing software</p>
<ul>
<li>Processing is an open source programming language and environment for people who want to create images, animations, and interactions (processing.org)</li>
</ul>
<ul style="text-align:left;">
<li>The Arduino IDE is derived from the Processing programming language. This change in the file extension creates a division between the two programming languages. Developers using both languages will no longer have conflicts between the two.</li>
</ul>
<p style="text-align:left;">The Serial class now contains functions for parsing incoming data. They include find() and findUntil() to search for data, parseInt() and parseFloat() for converting incoming characters into numeric values, and readBytes() and readBytesUntil() for reading multiple bytes into a buffer.</p>
<ul style="text-align:left;">
<li>Parsing (or breaking up) data into pieces will be more clear through the addition of these functions.</li>
</ul>
<p style="text-align:left;">The String class has been reimplemented. This new version is more memory efficient and robust.</p>
<ul style="text-align:left;">
<li>Functions like trim() and toUpperCase() which previously returned new string instances have been changed to instead modify strings in place</li>
<li>Strings (lines of text eg. &#8220;hello world&#8221;) will be more effectual with this update</li>
</ul>
<p style="text-align:left;">There have been many additional changes to the Arduino software. Read up on them in these official blog post:</p>
<ul style="text-align:left;">
<li><a href="http://arduino.cc/blog/2011/10/04/arduino-1-0/">http://arduino.cc/blog/2011/10/04/arduino-1-0/</a></li>
<li><a href="http://arduino.cc/en/Main/ReleaseNotes">http://arduino.cc/en/Main/ReleaseNotes</a></li>
</ul>
<p style="text-align:left;"><span style="text-decoration:underline;">Time to bring it back</span></p>
<p>There is a lot of great information out there on how to develop using the Arduino platform. Perhaps the best experience I had while working with the Arduino is the sense of support and comradely from the  extensive community of developers who gather around this technology. As a result of this network the Arduino is a more friendly device for novices. Hopefully these changes will provide increased awareness of this niftly little italian, awesome projects, and cool new gadgets.</p>
<p><span style="text-decoration:underline;">Cool Arduino Projects</span></p>
<p>Hover robot controller by Arduino</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=--mcCDSaXmw">http://www.youtube.com/watch?v=&#8211;mcCDSaXmw</a></li>
</ul>
<p>Micro wave that plays youtube videos for the duration of your cooktime, texts you when your food is done, and has its own twitter account that tweets about your using it.</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=1aDyDCBK828">http://www.youtube.com/watch?v=1aDyDCBK828</a></li>
</ul>
<p>Cat bed that signals a noise when the cat enters and continues to display glowing LED lights as the cat is sleeping in the bed.</p>
<ul>
<li><a href="http://vimeo.com/32851478">http://vimeo.com/32851478</a></li>
</ul>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobileremotecontrol.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobileremotecontrol.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobileremotecontrol.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobileremotecontrol.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobileremotecontrol.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobileremotecontrol.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobileremotecontrol.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobileremotecontrol.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobileremotecontrol.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobileremotecontrol.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobileremotecontrol.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobileremotecontrol.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobileremotecontrol.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobileremotecontrol.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=97&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobileremotecontrol.wordpress.com/2011/12/07/arduino-1-0-this-fiestly-little-italian-gets-an-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a33f7ba7c490e4a91cf2a1cecd8d7285?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caitlindavey</media:title>
		</media:content>

		<media:content url="http://softwear.cc/book/wp-content/uploads/2009/07/os_arduino_board.png" medium="image">
			<media:title type="html">Arduino board outine</media:title>
		</media:content>

		<media:content url="http://images1.fanpop.com/images/photos/2500000/New-Kids-On-The-Block-the-90s-boy-bands-2565666-500-500.jpg" medium="image">
			<media:title type="html">Takin' one from NKOTB</media:title>
		</media:content>
	</item>
		<item>
		<title>One tech to find them, one tech to bind them and one tech to rule them! Mobile Remote control&#8230; All Power from a distance</title>
		<link>http://mobileremotecontrol.wordpress.com/2011/12/02/one-tech-to-find-them-one-tech-to-bind-them-and-one-tech-to-rule-them-mobile-remote-control-all-power-from-a-distance/</link>
		<comments>http://mobileremotecontrol.wordpress.com/2011/12/02/one-tech-to-find-them-one-tech-to-bind-them-and-one-tech-to-rule-them-mobile-remote-control-all-power-from-a-distance/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 16:28:45 +0000</pubDate>
		<dc:creator>surfer43</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://mobileremotecontrol.wordpress.com/?p=92</guid>
		<description><![CDATA[Mobile remote control is what brought us together. Looking at the possibilities of controlling devices for different shapes, forms, functions and capabilities intrigued us and still do! &#160; David Neumann, a prof at Sheridan, introduced us to the Arduino micro-porcessor in one of his experiments called the &#8220;Arty Party&#8221;. He could change the music being [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=92&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mobile remote control is what brought us together. Looking at the possibilities of controlling devices for different shapes, forms, functions and capabilities intrigued us and still do!</p>
<p>&nbsp;</p>
<p>David Neumann, a prof at Sheridan, introduced us to the Arduino micro-porcessor in one of his experiments called the &#8220;Arty Party&#8221;. He could change the music being played at his party just by having people tag into or out of the room. Interesting thought&#8230; it made us curious.</p>
<p>Shortly after that we had a half dozen of these things floating around the class, working on little side projects and playing with them. It was fun.</p>
<p>When the opportunity to explore remote control surfaced in another class with Dan Zen, our group started banding together around this device to see what could be done with it. We quickly discovered that we could buy a bluetooth shield (Arduino&#8217;s fancy way of saying add-on). We also knew that all mobile smart devices had bluetooth technology in them&#8230; a match made in the future? the devide to control all other devices?? Could it be???</p>
<p>We started hacking away at it! Research this, look for that&#8230; we looked for different ways to access bluetooth from laptops, iPhones and Android devices. Z-Term (for the mac, other similar programs exist for those on a PC) was recommended to us in some of our research, so we tried it. It didn&#8217;t work&#8230; or so we thought. After hours of frustration, testing, more frustration and mass confusion, we went to talk to another prof, Felix. He took the time to explain network protocols which I must admit I only understand the basics of. He looked at our attempts and with a little guidance got us up and running! The man is brilliant!</p>
<p>If you are trying this route and don&#8217;t have a &#8220;Felix&#8221; to talk to, hold the &#8220;shift key&#8221; down when you are starting Z-Term, you&#8217;ll get a screen that allows you to access different ports on your computer or paired device. Pick the Arduino on and start playing&#8230; once we understood that, the magic really started to work for us!</p>
<p>Our sketches for the most part were ones that we found on the net. Some are listed in other posts here so I won&#8217;t republish them. I will say that Arduino runs on Processing, a Java based language. Look at the sketches, take your time and then start to play.</p>
<p>Arduino is a rapid build quick prototype system with almost instant gratification. I love it!</p>
<p>Mobile remote Control&#8230;<br />
One tech to find them, one tech to bind them and in the end one tech to rule them!!!</p>
<p>Joel</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobileremotecontrol.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobileremotecontrol.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobileremotecontrol.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobileremotecontrol.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobileremotecontrol.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobileremotecontrol.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobileremotecontrol.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobileremotecontrol.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobileremotecontrol.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobileremotecontrol.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobileremotecontrol.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobileremotecontrol.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobileremotecontrol.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobileremotecontrol.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=92&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobileremotecontrol.wordpress.com/2011/12/02/one-tech-to-find-them-one-tech-to-bind-them-and-one-tech-to-rule-them-mobile-remote-control-all-power-from-a-distance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b293d93a09584a463212bcc133d674a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">surfer43</media:title>
		</media:content>
	</item>
		<item>
		<title>Arduino opens a whole range of possibilities for IMM</title>
		<link>http://mobileremotecontrol.wordpress.com/2011/12/02/arduino-opens-a-whole-range-of-possibilities-for-imm/</link>
		<comments>http://mobileremotecontrol.wordpress.com/2011/12/02/arduino-opens-a-whole-range-of-possibilities-for-imm/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 15:23:43 +0000</pubDate>
		<dc:creator>Zain Abiddin</dc:creator>
				<category><![CDATA[Arduino Bluetooth Magic]]></category>
		<category><![CDATA[Arduino bluetooth magic baby!]]></category>
		<category><![CDATA[Dan Zen]]></category>
		<category><![CDATA[Interactive Multimedia at Sheridan]]></category>
		<category><![CDATA[Multi-user]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://mobileremotecontrol.wordpress.com/?p=84</guid>
		<description><![CDATA[Arduino opens a whole range of possibilities for artists, designers and programmers. Class members of Interactive Multimedia (IMM) at Sheridan Institute of Technology were first introduced to the technology through David Neumann, the Web Design and Application Development professor. Students were right away amazed by some of the really cool displays, applications, and devices produced [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=84&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://mobileremotecontrol.files.wordpress.com/2011/12/photo.jpg"><img class="alignnone size-medium wp-image-87" title="arduino" src="http://mobileremotecontrol.files.wordpress.com/2011/12/photo.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Arduino opens a whole range of possibilities for artists, designers and programmers. Class members of Interactive Multimedia (IMM) at Sheridan Institute of Technology were first introduced to the technology through David Neumann, the Web Design and Application Development professor.</p>
<p>Students were right away amazed by some of the really cool displays, applications, and devices produced through this technology. The Mobile Remote Control group within the Interactive Multimedia Program decided to experiment with the technology and were able to connect the device with a android based mobile device. This allowed them to control various devices connected with the Arduino board including lights and paper shredders through a mobile device.</p>
<p>The group later formed a student club and introduced to the technology to the rest of Sheridan college by bringing in members of other groups and programs. By creating an interest for this technology for the other programs at Sheridan, the IMM class members will be able to collaborate on future projects through a blend of talents.</p>
<p>This is just the beginning for The Mobile Remote Control group at IMM. As the program progresses to next semester, students will continue to experiment with the technology and innovate by going beyond the limits of their imaginations!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobileremotecontrol.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobileremotecontrol.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobileremotecontrol.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobileremotecontrol.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobileremotecontrol.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobileremotecontrol.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobileremotecontrol.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobileremotecontrol.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobileremotecontrol.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobileremotecontrol.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobileremotecontrol.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobileremotecontrol.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobileremotecontrol.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobileremotecontrol.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=84&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobileremotecontrol.wordpress.com/2011/12/02/arduino-opens-a-whole-range-of-possibilities-for-imm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d49c0af4951142f3444909df5a15b7f9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zainiul</media:title>
		</media:content>

		<media:content url="http://mobileremotecontrol.files.wordpress.com/2011/12/photo.jpg?w=300" medium="image">
			<media:title type="html">arduino</media:title>
		</media:content>
	</item>
		<item>
		<title>Just Like My Momma Used To Say&#8230;</title>
		<link>http://mobileremotecontrol.wordpress.com/2011/12/02/just-like-my-momma-used-to-say/</link>
		<comments>http://mobileremotecontrol.wordpress.com/2011/12/02/just-like-my-momma-used-to-say/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 14:42:55 +0000</pubDate>
		<dc:creator>ricardovazzquez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Magic Baby]]></category>

		<guid isPermaLink="false">http://mobileremotecontrol.wordpress.com/2011/12/02/just-like-my-momma-used-to-say/</guid>
		<description><![CDATA[You never know what you&#8217;re going to get! I found it so inspiring and provocative. The possibilities of creating something with Arduino are endless. Well, you need a computer first! But once you achieve the idea of what you want to pursue, the opportunities that Arduino presents are extremely malleable and context rich.  In our group, Joel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=81&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You never know what you&#8217;re going to get! I found it so inspiring and provocative. The possibilities of creating something with Arduino are endless. Well, you need a computer first! But once you achieve the idea of what you want to pursue, the opportunities that Arduino presents are extremely malleable and context rich. </p>
<p>In our group, Joel headed up the technical configuration for Arduino. It was by no means easy to get started with Arduino, as it uses its own IDE and language. One needs to have a basic understanding of circuit wiring, which is were Roger and Travis were essential in the project. One also needs to know Programming Basics. If one has these on their back, then you will find these resources very helpful:</p>
<p><strong>Getting Started with Arduino by Massimo Banzi (O&#8217;Reilly Press)</strong></p>
<p><strong>Arduino Cookbook by Michael Margolis (O&#8217;Reilly Press)</strong></p>
<p>I especially like Massimo Banzi&#8217;s introduction to Arduino, as it gives you a light and interesting read on Arduino. The Arduino Cookbook could be a bit dense at times. These books do start from the beginning though, lighting an LED! </p>
<p>It is not that challenging to light an LED as long as you get the wiring right! I suggest that this be your first Arduino exercise, as it will build confidence and excitement in you. Out group decided to use a Bluetooth interface to communicate with the Arduino Board. This was a great challenge for us, as we had multiple obstacles in making the Bluetooth on an iOS Device be seen by the Arduino Board. We tested the connection out on an Android Mobile Device and it worked! </p>
<p>I am definitely interested in doing more idea implementation using Arduino. Even though the learning curve might be a bit steep at times, I feel that it is such a rewarding experience in the end that it is just hard to ignore. Give it a shot! You will feel like the ultimate McGiver. </p>
<p>Stay fresh, </p>
<p>Ricardo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobileremotecontrol.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobileremotecontrol.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobileremotecontrol.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobileremotecontrol.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobileremotecontrol.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobileremotecontrol.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobileremotecontrol.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobileremotecontrol.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobileremotecontrol.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobileremotecontrol.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobileremotecontrol.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobileremotecontrol.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobileremotecontrol.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobileremotecontrol.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=81&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobileremotecontrol.wordpress.com/2011/12/02/just-like-my-momma-used-to-say/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/076d5b6e68bd778dbed6d51d14dec545?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ricardovazzquez</media:title>
		</media:content>
	</item>
		<item>
		<title>Arduino Bluetooth Magic Baby</title>
		<link>http://mobileremotecontrol.wordpress.com/2011/12/01/9/</link>
		<comments>http://mobileremotecontrol.wordpress.com/2011/12/01/9/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 18:29:05 +0000</pubDate>
		<dc:creator>Roger</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Dan Zen]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[multi-user]]></category>
		<category><![CDATA[robin]]></category>

		<guid isPermaLink="false">http://mobileremotecontrol.wordpress.com/?p=9</guid>
		<description><![CDATA[Arduino magic, baby! Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It&#8217;s intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments. Seven of the IMM compadres Andrew, Joel, Saad, Caitlin &#38; Zain including myself chose to join and form a Mobile Remote Control for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=9&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<div><img title="bluetooth_arduino" src="http://rogerennis.files.wordpress.com/2011/11/bluetooth_arduino.jpg?w=440&#038;h=600" alt="" width="440" height="600" /></div>
<div></div>
<div>Arduino magic, baby!</div>
<div></div>
<div><a title="Arduino" href="http://www.arduino.cc/" target="_blank">Arduino</a> is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It&#8217;s intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments.</div>
<div>Seven of the IMM compadres Andrew, Joel, Saad, Caitlin &amp; Zain including myself chose to join and form a Mobile Remote Control for our Multimedia Pioneering class under the direction of our prof, <a href="http://http://www.danzen.com/">Dan Zen</a>. We also made a facebook group which now has 22 members</div>
<div>
<ul>
<li>
<div>
<div>
<div>Zain Abiddin</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Andrew Corway</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Caitlin Davey</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Joel Brown</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Travis G Gledhill</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Saad Qattan</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Ricardo Vazquez</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Stephen Littlechild</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Rob McLaren</div>
</div>
</div>
</li>
<li>
<div>
<div> Grace Chu</div>
</div>
</li>
<li>
<div>
<div> Michelle Oliveira</div>
</div>
</li>
<li>
<div>
<div> Jen Avila</div>
</div>
</li>
<li>
<div>
<div>
<div>Amy Tilarso</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Fedor Fernández Collazo</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Lisa Gervais-Parliament</div>
</div>
</div>
</li>
<li>
<div>
<div>
<div>Ana Gerardino</div>
</div>
</div>
</li>
<li>
<div>
<div> Jeff McKee</div>
</div>
</li>
<li>
<div>
<div> Thomas Bargold</div>
</div>
</li>
<li>
<div>
<div> Néstor Grandal</div>
</div>
</li>
<li>
<div>
<div> Kristin Cron</div>
</div>
</li>
<li>Felix (web design)</li>
<li>Derek (web design)</li>
</ul>
</div>
<div></div>
<div>Our aim was to achieve ultimate control of all electronic devices! &#8230;.but starting with a led light. We got to work on using the arduino hardware and software kit(bluetooth card, led light, wires, breadboard&#8230;) At first we had to solder a component to the bluetooth card to it could be wire connected as displayed in the photo.Making the light work was not much of a problem.</div>
<div></div>
<div></div>
<div>We spent a couple of days trying to find a sketch for the arduino IDE that would work interface with the bluetooth via a computer. It finally worked!! Then we set out to use a phone application. We searched for a possible iphone / mac app that could work, but didn&#8217;t find one. We found an android application that we could mess around with.After much play and a little dismay; Help talking to some sources to gain some insight on bluetooth, Success! we got the light to work. The android app, with the right IDE code from <a href="http://www.amarino-toolkit.net">amarino.net</a>, see below.</div>
<div>
<p>#include<br />
MeetAndroid meetAndroid;<br />
int onboardLED = 13;</p>
<p>void setup()<br />
{<br />
Serial.begin(115200);<br />
meetAndroid.registerFunction(testEvent, ‘A’);<br />
pinMode(onboardLED, OUTPUT);<br />
digitalWrite(onboardLED, LOW);<br />
}</p>
<p>void loop()<br />
{<br />
meetArduino.receive();<br />
}</p>
<p>void testEvent( byte flag, byte numOfValues)<br />
{<br />
flushLED(1000);<br />
flushLED(1000);<br />
flushLED(1000);<br />
flushLED(1000);<br />
}</p>
<p>void flushLED( int time )<br />
{<br />
digitalWrite(onboardLED, High);<br />
delay(time);<br />
digitalWrite(onboardLED, LOW);<br />
delay(time);<br />
}</p>
<p>worked like a charm and we had full control.</p>
<p>Go ahead and check it out, if interested.<br />
Stay Fly,<br />
Roger</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobileremotecontrol.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobileremotecontrol.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobileremotecontrol.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobileremotecontrol.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobileremotecontrol.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobileremotecontrol.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobileremotecontrol.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobileremotecontrol.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobileremotecontrol.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobileremotecontrol.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobileremotecontrol.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobileremotecontrol.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobileremotecontrol.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobileremotecontrol.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=9&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobileremotecontrol.wordpress.com/2011/12/01/9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9644cf696f104eeb6349f70737376da?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rogerennis</media:title>
		</media:content>

		<media:content url="http://rogerennis.files.wordpress.com/2011/11/bluetooth_arduino.jpg?w=224" medium="image">
			<media:title type="html">bluetooth_arduino</media:title>
		</media:content>
	</item>
		<item>
		<title>Tired of having to get up to stop robot invasions? Well not anymore &#8212; Mobile Remote Control Club to the rescue!</title>
		<link>http://mobileremotecontrol.wordpress.com/2011/12/01/7/</link>
		<comments>http://mobileremotecontrol.wordpress.com/2011/12/01/7/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 18:12:00 +0000</pubDate>
		<dc:creator>andrewcorway</dc:creator>
				<category><![CDATA[Arduino bluetooth magic baby!]]></category>
		<category><![CDATA[Dan Zen]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Multi-user]]></category>
		<category><![CDATA[Robin]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mobileremotecontrol.wordpress.com/?p=7</guid>
		<description><![CDATA[Starting a new club is hard. It&#8217;s ambitious. But that&#8217;s what we did. It&#8217;s called Mobile Remote Control Club. The whole purpose of the club was to engage and experiment with technologies that enable us to do computing and control objects (digital objects in this case) at a range (be it close or far). Our [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=7&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" title="remote-intro" src="http://andrewcorway.files.wordpress.com/2011/12/remote-intro.jpg?w=490&#038;h=485" alt="" width="490" height="485" />Starting a new club is hard. It&#8217;s ambitious. But that&#8217;s what we did. It&#8217;s called Mobile Remote Control Club. The whole purpose of the club was to engage and experiment with technologies that enable us to do computing and control objects (digital objects in this case) at a range (be it close or far). Our first meeting was held November 24th, 2011 and to our surprise more than just the initial group actually showed up!</p>
<p>Caitlin and myself made posters and spoke in front of other classes on the Sheridan College campus in Oakville to draw attention. We were even able to get up to <a title="Our Facebook group!" href="http://www.facebook.com/groups/168001033295442/" target="_blank">22 members</a> on facebook! I put out a live broadcast to my networks and people were genuinely interested in the fun twist of &#8220;controlling robots&#8221; we branded our club with.</p>
<p><img class="aligncenter" title="arduino-22members" src="http://andrewcorway.files.wordpress.com/2011/12/arduino-22members.jpg?w=490&#038;h=323" alt="" width="490" height="323" /></p>
<p>To be fair, Roger, Saad, Travis and above all else Joel Brown did the majority of the coding and testing and messing around. I want to be clear &#8212; those guys are power horses who won&#8217;t stop until every circuit has been explored.</p>
<p>So anyway &#8211; how did we do it? What did we decide to use in terms of tech?</p>
<ul>
<li><a href="http://www.arduino.cc/" target="_blank">Arduino</a> circuit boards &#8211; These things are open source and gaining a ton of support in the development community. Essentially it&#8217;s a circuit board you can upload code/instructions to and it will do it for you via &#8220;ports&#8221;. See the image of it below.</li>
<li>Bluetooth &#8211; most people know this technology from the loud-talking douchebag lawyers on Bay Street wearing it down the sidewalk for some reason (I mean come on, bro, really?). This tech communicated from our phone to the device (it activated our arduino code).</li>
<li>Android-powered phones &#8211; Nerds rejoice because we couldn&#8217;t get it to run at all on our iPhones. As a designer that was a bummer, but oh well. Apple is a bit of a  bastard, what more can you say?</li>
</ul>
<p>Check out our connection and set up:</p>
<p><img class="aligncenter" title="arduino-sample" src="http://andrewcorway.files.wordpress.com/2011/12/arduino-sample.jpg?w=490&#038;h=323" alt="" width="490" height="323" /></p>
<p>As my best friend Roger would say: &#8220;Arduino Bluetooth Magic, baby!&#8221;</p>
<p>Wowzers! I know what you&#8217;re thinking: for wireless Bluetooth that sure is a lot of wires! It&#8217;s very important to set this stuff up correctly &#8211; but it just takes some trial and error for people who aren&#8217;t familiar with technology (kind of a trend &#8212; just have fun and play around with new tech &#8212; if you read my multi-user post below!).</p>
<p>We used a &#8220;sketch&#8221; (a snippet of code) from <a href="http://www.amarino-toolkit.net/" rel="nofollow nofollow" target="_blank">www.amarino-toolkit.net</a> &#8212; see below:</p>
<p><strong>#include&lt;MeetAndroid.h&gt;<br />
MeetAndroid meetAndroid;</strong><br />
<strong> int onboardLED = 13;</strong></p>
<p><strong>void setup()</strong><br />
<strong> {</strong><br />
<strong> Serial.begin(115200);</strong><br />
<strong> meetAndroid.registerFunction(testEvent, &#8216;A&#8217;);</strong><br />
<strong> pinMode(onboardLED, OUTPUT);</strong><br />
<strong> digitalWrite(onboardLED, LOW);</strong><br />
<strong> }</strong></p>
<p><strong>void loop()</strong><br />
<strong> {</strong><br />
<strong> meetArduino.receive();</strong><br />
<strong> }</strong></p>
<p><strong>void testEvent( byte flag, byte numOfValues)</strong><br />
<strong> {</strong><br />
<strong> flushLED(1000);</strong><br />
<strong> flushLED(1000);</strong><br />
<strong> flushLED(1000);</strong><br />
<strong> flushLED(1000);</strong><br />
<strong> }</strong></p>
<p><strong>void flushLED( int time )</strong><br />
<strong> {</strong><br />
<strong> digitalWrite(onboardLED, High);</strong><br />
<strong> delay(time);</strong><br />
<strong> digitalWrite(onboardLED, LOW);</strong><br />
<strong> delay(time);</strong><br />
<strong> }</strong></p>
<p>So there&#8217;s that. It essentially tells the board to send power to a certain port (we plug the led light in to that port) when it receives a message from the bluetooth attached to it.</p>
<p>Pretty simple for connecting something remotely. Arduino runs on a language called Processing which is eerily similar to Javascript. So coming from a web coding background it&#8217;s really easy to manipulate the data and code.</p>
<p>During our gathering our goal was to get the light on the board to turn off and on as we texted/pinged it a message through a wireless bluetooth connection. It took about 20 &#8211; 30 minutes of troubleshooting and setup but we got it to work!</p>
<p>If you require proof (what are you a detective or something?):</p>
<p><img class="aligncenter" title="meeting-working" src="http://andrewcorway.files.wordpress.com/2011/12/meeting-working.jpg?w=490&#038;h=323" alt="" width="490" height="323" /></p>
<p>So why is turning a light on important? Well for one it means the Arduino is listening to our code. And considering <a href="http://arduino.cc/en/Tutorial/HomePage" target="_blank">how many attachments Arduino&#8217;s can attach</a> the possibilities of that are endless. When you&#8217;re coding the rule of thumb is to dream big but start small. Don&#8217;t bite off more than you can chew &#8212; you get frustrated and turned off if you do that. This isn&#8217;t even our first step &#8212; it&#8217;s our first crawl in to the realm of remote computing.</p>
<p>Our inaugural meeting, Nov 24th, 2011:</p>
<p><img class="aligncenter" title="meeting-ourcrew" src="http://andrewcorway.files.wordpress.com/2011/12/meeting-ourcrew.jpg?w=490&#038;h=323" alt="" width="490" height="323" />Some guy came and wanted to take footage of us working with our gadgets and gizmos so we acquiesced. The more the merrier! Also it&#8217;s a good opportunity to potentially get more members to join our group.</p>
<p><strong>Dreaming Big<br />
</strong>So what can be done with this technology once we master it? A few ideas we came up with:</p>
<ul>
<li>Remote controlled juke box for bars and pubs &#8211; with digital money exchange. You could queue songs up you wanted without having to even get up from your table. Just download an app and you&#8217;re done!</li>
<li>Home stuff &#8211; turning on and off lights, and things of that nature already exist. But it would be wholly inexpensive to utilize these boards and this technology/code to do it yourself giving you full control.</li>
<li>Mixing yourself a margarita by turning on your blender as you pull up to home after a hard day at work!</li>
<li>Add a humidity sensor to your flowers and have the Arduino automatically water them for you when it&#8217;s too low!</li>
<li>Stopping bloodthirsty robots from uprising and killing all life on earth (except turtles of course, not even robots could hate those little scamps).</li>
</ul>
<p>If you&#8217;re interested in this stuff <a title="Mobile Remote Control facebook group" href="http://www.facebook.com/groups/168001033295442/" target="_blank">please join us on facebook</a> and keep up. Hopefully it catches on because it&#8217;s inevitable robots will try something funny. I don&#8217;t trust them.</p>
<p>And as a survival tip always remember &#8212; <a href="http://www.youtube.com/watch?v=ASoCJTYgYB0">when the robot invasion happens be on the second floor</a>.</p>
<p><strong>- Andrew Corway</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobileremotecontrol.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobileremotecontrol.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobileremotecontrol.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobileremotecontrol.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobileremotecontrol.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobileremotecontrol.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobileremotecontrol.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobileremotecontrol.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobileremotecontrol.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobileremotecontrol.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobileremotecontrol.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobileremotecontrol.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobileremotecontrol.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobileremotecontrol.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobileremotecontrol.wordpress.com&amp;blog=30034156&amp;post=7&amp;subd=mobileremotecontrol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobileremotecontrol.wordpress.com/2011/12/01/7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/155a8bb695d514e148d92533d4bf592d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewcorway</media:title>
		</media:content>

		<media:content url="http://andrewcorway.files.wordpress.com/2011/12/remote-intro.jpg" medium="image">
			<media:title type="html">remote-intro</media:title>
		</media:content>

		<media:content url="http://andrewcorway.files.wordpress.com/2011/12/arduino-22members.jpg" medium="image">
			<media:title type="html">arduino-22members</media:title>
		</media:content>

		<media:content url="http://andrewcorway.files.wordpress.com/2011/12/arduino-sample.jpg" medium="image">
			<media:title type="html">arduino-sample</media:title>
		</media:content>

		<media:content url="http://andrewcorway.files.wordpress.com/2011/12/meeting-working.jpg" medium="image">
			<media:title type="html">meeting-working</media:title>
		</media:content>

		<media:content url="http://andrewcorway.files.wordpress.com/2011/12/meeting-ourcrew.jpg" medium="image">
			<media:title type="html">meeting-ourcrew</media:title>
		</media:content>
	</item>
	</channel>
</rss>
