<?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>Magabot</title>
	<atom:link href="http://magabot.cc/feed/" rel="self" type="application/rss+xml" />
	<link>http://magabot.cc</link>
	<description>Computer on Wheels</description>
	<lastBuildDate>Thu, 13 Dec 2012 00:26:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>This is Madness!</title>
		<link>http://magabot.cc/this-is-madness/</link>
		<comments>http://magabot.cc/this-is-madness/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 15:52:10 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=761</guid>
		<description><![CDATA[Magabot went crazy and started shooting ping pong balls at an innocent Farrusco and, as if it was not enough, traveled all the way to Berlin in order...]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/3zeoNTXP-Yo" frameborder="0" width="640" height="360"></iframe></p>
<p>Magabot went crazy and started shooting ping pong balls at an innocent <a href="http://www.guibot.pt/farrusco/" target="_blank">Farrusco</a> and, as if it was not enough, traveled all the way to Berlin in order to shoot people who where passing by the <a href="http://letsmakerobots.com/" target="_blank">Let&#8217;s Make Robots</a> table at <a href="https://www.campus-party.eu/2012/index.html" target="_blank">Campus Party Europe</a>:</p>
<p><iframe src="http://www.youtube.com/embed/aiz_cN2QWQ8" frameborder="0" width="640" height="360"></iframe></p>
<p>Shame on you Magabot!</p>
<p>&nbsp;</p>
<p><strong>PS:</strong> If you liked the ping pong balls launcher, we invite you to make your own <img src='http://magabot.cc/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Have a look here: <a href="http://www.thingiverse.com/thing:29670">http://www.thingiverse.com/thing:29670</a></p>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/this-is-madness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mind-Controlled Magabot</title>
		<link>http://magabot.cc/mind-controlled-magabot/</link>
		<comments>http://magabot.cc/mind-controlled-magabot/#comments</comments>
		<pubDate>Wed, 11 Jul 2012 00:27:17 +0000</pubDate>
		<dc:creator>hyperritual</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=729</guid>
		<description><![CDATA[I recently brought Magabot to the Seattle Mini-Maker Faire to demonstrate controlling it with the Emotiv EPOC neuroheadset. I used the most affordable version of...]]></description>
			<content:encoded><![CDATA[<p>I recently brought Magabot to the <a href="http://www.makerfaireseattle.com/" title="Maker Faire Seattle">Seattle Mini-Maker Faire</a> to demonstrate controlling it with the <a href="http://www.emotiv.com/" title="Emotiv.com">Emotiv EPOC neuroheadset</a>. I used the <a href="http://www.emotiv.com/store/hardware/epoc-bci/epoc-neuroheadset/" title="Emotiv EPOC consumer model">most affordable version of the EPOC</a>, with no SDK, and a free application called <a href="http://sourceforge.net/projects/mindyouroscs/" title="Mind Your OSCs">Mind Your OSCs</a>, which converts the EPOC data to <a href="http://opensoundcontrol.org/" title="OpenSoundControl.org">Open Sound Control (OSC)</a> data, which I read in <a href="http://processing.org/" title="Processing.org">Processing</a> (using Andreas Schlegel&#8217;s <a href="http://www.sojamo.de/libraries/oscP5/" title="oscP5">oscP5 library</a>) and convert to characters to send over a serial connection to the Magabot&#8217;s <a href="http://www.arduino.cc/" title="Arduino.cc">Arduino</a> running the standard Magabot_SerialControl sketch (protocol = &#8216;H&#8217;). I mapped the EPOC&#8217;s four Cognitiv values for Push, Pull, Left, and Right, to the characters w, s, a, and d, respectively.</p>
<p>brain &rarr; EPOC &rarr; EPOC Control Panel &rarr; Mind Your OSCs &rarr; Processing (w/ oscP5) &rarr; Magabot (Arduino)</p>
<p>Here is the Processing sketch:</p>
<pre>
<span style="color: #7E7E7E">/**</span>
<span style="color: #7E7E7E">&nbsp;*&nbsp;NeuroMagabot</span>
<span style="color: #7E7E7E">&nbsp;*&nbsp;by&nbsp;Joshua&nbsp;Madara,&nbsp;hyperritual.com</span>
<span style="color: #7E7E7E">&nbsp;*</span>
<span style="color: #7E7E7E">&nbsp;*&nbsp;Transforms&nbsp;data&nbsp;from&nbsp;the&nbsp;Emotiv&nbsp;EPOC&nbsp;neuroheadset</span>
<span style="color: #7E7E7E">&nbsp;*&nbsp;to&nbsp;control&nbsp;data&nbsp;for&nbsp;the&nbsp;Magabot,&nbsp;via&nbsp;OSC.</span>
<span style="color: #7E7E7E">&nbsp;*/</span>

<span style="color: #CC6600">import</span> processing.serial.*;
<span style="color: #CC6600">import</span> oscP5.*;
<span style="color: #CC6600">import</span> netP5.*;

Serial&nbsp;port;
OscP5&nbsp;oscP5;

<span style="color: #CC6600">float</span> thresh = 0.25; <span style="color: #7E7E7E">// one threshold for all Cognitiv values</span>

<span style="color: #CC6600">void</span> <span style="color: #CC6600"><b>setup</b></span>() {
&nbsp;&nbsp;<span style="color: #CC6600">size</span>(200, 200);
&nbsp;&nbsp;<span style="color: #CC6600">println</span>(Serial.<span style="color: #CC6600">list</span>());
&nbsp;&nbsp;port&nbsp;=&nbsp;<span style="color: #CC6600">new</span> Serial(<span style="color: #CC6600">this</span>, Serial.<span style="color: #CC6600">list</span>()[0], 9600);
&nbsp;&nbsp;
&nbsp;&nbsp;<span style="color: #7E7E7E">//start oscP5, listening for incoming messages at port 7400</span>
&nbsp;&nbsp;<span style="color: #7E7E7E">//make sure this matches the port in Mind Your OSCs</span>
&nbsp;&nbsp;oscP5&nbsp;=&nbsp;<span style="color: #CC6600">new</span> OscP5(<span style="color: #CC6600">this</span>, 7400);
&nbsp;&nbsp;
&nbsp;&nbsp;<span style="color: #7E7E7E">// plug the messages for the Cognitiv values</span>
&nbsp;&nbsp;oscP5.plug(<span style="color: #CC6600">this</span>,<span style="color: #006699">"sendW"</span>,<span style="color: #006699">"/COG/PUSH"</span>);
&nbsp;&nbsp;oscP5.plug(<span style="color: #CC6600">this</span>,<span style="color: #006699">"sendS"</span>,<span style="color: #006699">"/COG/PULL"</span>);
&nbsp;&nbsp;oscP5.plug(<span style="color: #CC6600">this</span>,<span style="color: #006699">"sendA"</span>,<span style="color: #006699">"/COG/LEFT"</span>);
&nbsp;&nbsp;oscP5.plug(<span style="color: #CC6600">this</span>,<span style="color: #006699">"sendD"</span>,<span style="color: #006699">"/COG/RIGHT"</span>);
}

<span style="color: #CC6600">void</span> <span style="color: #CC6600"><b>draw</b></span>() {
&nbsp;&nbsp;<span style="color: #7E7E7E">// here you could graph the EPOC data, draw an animated face on the laptop screen, etc.</span>
}

<span style="color: #CC6600">public</span> <span style="color: #CC6600">void</span> sendW(<span style="color: #CC6600">float</span> val) {
&nbsp;&nbsp;<span style="color: #CC6600">if</span> (val &gt;= thresh) {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'w'</span>); <span style="color: #7E7E7E">// send move-forward command to Arduino</span>
&nbsp;&nbsp;}&nbsp;<span style="color: #CC6600">else</span> {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'p'</span>); <span style="color: #7E7E7E">// send stop command</span>
&nbsp;&nbsp;}
}

<span style="color: #CC6600">public</span> <span style="color: #CC6600">void</span> sendS(<span style="color: #CC6600">float</span> val) {
&nbsp;&nbsp;<span style="color: #CC6600">if</span> (val &gt;= thresh) {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'s'</span>); <span style="color: #7E7E7E">// send move-reverse command to Arduino</span>
&nbsp;&nbsp;}&nbsp;<span style="color: #CC6600">else</span> {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'p'</span>);
&nbsp;&nbsp;}
}

<span style="color: #CC6600">public</span> <span style="color: #CC6600">void</span> sendA(<span style="color: #CC6600">float</span> val) {
&nbsp;&nbsp;<span style="color: #CC6600">if</span> (val &gt;= thresh) {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'a'</span>); <span style="color: #7E7E7E">// send turn-left command to Arduino</span>
&nbsp;&nbsp;}&nbsp;<span style="color: #CC6600">else</span> {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'p'</span>);
&nbsp;&nbsp;}
}

<span style="color: #CC6600">public</span> <span style="color: #CC6600">void</span> sendD(<span style="color: #CC6600">float</span> val) {
&nbsp;&nbsp;<span style="color: #CC6600">if</span> (val &gt;= thresh) {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'d'</span>); <span style="color: #7E7E7E">// send turn-right command to Arduino</span>
&nbsp;&nbsp;}&nbsp;<span style="color: #CC6600">else</span> {
&nbsp;&nbsp;&nbsp;&nbsp;port.write(<span style="color: #006699">'p'</span>);
&nbsp;&nbsp;}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/mind-controlled-magabot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another day at the office&#8230;</title>
		<link>http://magabot.cc/another-day-at-the-office/</link>
		<comments>http://magabot.cc/another-day-at-the-office/#comments</comments>
		<pubDate>Mon, 02 Jul 2012 22:00:10 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=718</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/another-day-at-the-office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Hangouts Video</title>
		<link>http://magabot.cc/new-hangouts-video/</link>
		<comments>http://magabot.cc/new-hangouts-video/#comments</comments>
		<pubDate>Tue, 26 Jun 2012 22:53:04 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=710</guid>
		<description><![CDATA[Today we&#8217;ve launched a new video showing the latest integration of our bot with hangouts. Now different people can control a robot directly from there...]]></description>
			<content:encoded><![CDATA[<p>Today we&#8217;ve launched a new video showing the<a href="http://magabot.cc/hangouts/" target="_blank"> latest integration of our bot with hangouts</a>.</p>
<p>Now different people can control a robot directly from there and visit a different place together!</p>
<p><iframe src="http://www.youtube.com/embed/WvJH5iWAP38" frameborder="0" width="640" height="360"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/new-hangouts-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magabot at Human 2.0</title>
		<link>http://magabot.cc/magabot-at-human-2-0/</link>
		<comments>http://magabot.cc/magabot-at-human-2-0/#comments</comments>
		<pubDate>Mon, 25 Jun 2012 18:45:42 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=331</guid>
		<description><![CDATA[Last month we were at an event called Human 2.0, hosted by Ar, &#8220;the brainchild of a group of neuroscience students and researchers from the Champalimaud...]]></description>
			<content:encoded><![CDATA[<h5>Last month we were at an event called Human 2.0, hosted by Ar, <em>&#8220;the brainchild of a group of neuroscience students and researchers from the Champalimaud Neuroscience Programme&#8221;</em>.</h5>
<h5>Bellow are the description of the event, a video and some photos. Hope you enjoy it!</h5>
<blockquote><p>
The drive to enhance human potential is as ancient as our history itself. Some see this quest to surpass our limitations as fundamental, others regard it as dangerous arrogance. The history of human enhancements has seen dark turns, but also great insights and we now stand with many accomplishments behind us. We have catalogued the human genome, developed medical technologies that fight deadly disease and extend human lives. We are at the dawn of regenerative medicine and the first bionic prostheses are being engineered. Humanity has intertwined the development of our bodies and minds with emerging technologies for thousands of years, but never to the extent and speed that we experience now.
</p></blockquote>
<p><iframe src="http://www.youtube.com/embed/aYsrzbTZgcM" frameborder="0" width="560" height="315"></iframe></p>
<p>&nbsp;</p>
<h2>Here are some photos taken by the <a href="http://ar.neuro.fchampalimaud.org/about" target="_blank">Ar team</a>:</h2>
<p><img class="alignnone" title="Magabot opening the event" src="https://lh6.googleusercontent.com/-nXlq-d38Zfo/T8dwiXebYqI/AAAAAAAAAnE/Iip6zqoZeyQ/s547/Human+2.0+-+14.jpg" alt="" width="366" height="547" /></p>
<p><img class="alignnone" title="Adam Kampff on the stage from Harvard" src="https://lh3.googleusercontent.com/-qraqEeGg-bQ/T8dw9G5RcSI/AAAAAAAAAqw/Jwwg05_JvA8/s547/Human+2.0+-+16.jpg" alt="" width="363" height="547" /></p>
<p><img class="alignleft  wp-image-692" title="Human 2.0 - 17" src="http://magabot.cc/wp-content/uploads/Human-2.0-17.jpg" alt="" width="819" height="544" /></p>
<p><img class="alignnone" title="Magabot after the event" src="https://lh5.googleusercontent.com/-7HDOI710zVQ/T8dwvV5eoxI/AAAAAAAAApU/ZPlZXwveKUg/s547/Human+2.0+-+35.jpg" alt="" width="363" height="547" /></p>
<p><img class="alignnone" title="DJ visiting the party remotely" src="https://lh6.googleusercontent.com/-PsPu4eyVK24/T8dwxMf_otI/AAAAAAAAAps/fQlmiDBMYWk/s546/Human+2.0+-+38.jpg" alt="" width="363" height="546" /></p>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/magabot-at-human-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magabots making the difference</title>
		<link>http://magabot.cc/magabots-making-the-difference/</link>
		<comments>http://magabot.cc/magabots-making-the-difference/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 22:35:37 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=182</guid>
		<description><![CDATA[This time we have done something different, we teamed up with &#8220;Dona Estefânia&#8221; hospital and &#8220;Pavilhão do Conhecimento&#8221; museum, to let kids who were on the...]]></description>
			<content:encoded><![CDATA[<p>This time we have done something different, we teamed up with &#8220;<em>Dona Estefânia&#8221; </em>hospital and &#8220;<em>Pavilhão do Conhecimento&#8221; </em>museum, to let kids who were on the hospital to visit and explore the museum with magabots.</p>
<p>We used Google Chat on Gmail not only to trasmit the video and sound between the computers but also to send the control messages.</p>
<p>The experiment was amazing! While they were kind of reluctant and confused at first,  once they started exploring the remote museum their faces were filled with wonder and joy. All of them, without exception, had a lot of fun and we could see how much more relieved they were than before they tried it.</p>
<p>On the other hand, the kids that were on the museum appeared to be intrigued by the robots at first, but when saw that there was a kid on the other side, they flocked around it, and started to talk to them.</p>
<p>Watch the video <img src='http://magabot.cc/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><iframe src="http://www.youtube.com/embed/jW2zTFlzWho" frameborder="0" width="853" height="480"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/magabots-making-the-difference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Kinect with Magabot</title>
		<link>http://magabot.cc/using-kinect-with-magabot/</link>
		<comments>http://magabot.cc/using-kinect-with-magabot/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 16:18:27 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=146</guid>
		<description><![CDATA[Microsoft&#8217;s Kinect is an awesome piece of hardware and, when used with magabot, the possibilities are endless. Bellow are two videos that show some tests...]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s Kinect is an awesome piece of hardware and, when used with magabot, the possibilities are endless.</p>
<p>Bellow are two videos that show some tests I made with my robot earlier this year:</p>
<p><iframe src="http://www.youtube.com/embed/a56qx11ZK_I" frameborder="0" width="640" height="360"></iframe><br />
<iframe src="http://www.youtube.com/embed/rpM3h8YqvwU" frameborder="0" width="640" height="360"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/using-kinect-with-magabot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magabot Arduino Library</title>
		<link>http://magabot.cc/magabot-arduino-library/</link>
		<comments>http://magabot.cc/magabot-arduino-library/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:25:24 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Arduino Code]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=75</guid>
		<description><![CDATA[Download: http://code.magabot.cc/magabot-arduino-library/overview &#160; On the examples you can find the base code we use. List of functions and variables: Magabot(); void actuateMotors(int vel1, int vel2); void...]]></description>
			<content:encoded><![CDATA[<div><strong>Download:</strong> <a href="http://code.magabot.cc/magabot-arduino-library/overview" rel="nofollow">http://code.magabot.cc/magabot-arduino-library/overview</a></div>
<p>&nbsp;</p>
<div>On the examples you can find the base code we use.</div>
<p><strong>List of functions and variables:</strong></p>
<div>
<pre>Magabot();</pre>
<pre>void actuateMotors(int vel1, int vel2);
void actuateLEDs(int Red, int Green, int Blue);
void readBattery();
void readSonars();
void changeSonarAddress(char oldAddress, char newAddress);
void readIR();
void readBumpers();
void readClicks();
void update();</pre>
<pre>int irMaxValue;</pre>
<pre>bool irState[3];
int irRead[3];
bool bumperRead[2];
int sonarRead[6];
int batteryRead;</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/magabot-arduino-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>googleChatRobotController</title>
		<link>http://magabot.cc/googlechatrobotcontroller/</link>
		<comments>http://magabot.cc/googlechatrobotcontroller/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:13:23 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=57</guid>
		<description><![CDATA[Download: http://code.magabot.cc/googlechatrobotcontroller/overview This application creates an interface between Google Chat and the robot, working as a Google Chat client on your computer. When you choose to...]]></description>
			<content:encoded><![CDATA[<p dir="ltr"><strong>Download:</strong> <a href="http://code.magabot.cc/googlechatrobotcontroller/overview" rel="nofollow">http://code.magabot.cc/googlechatrobotcontroller/overview</a></p>
<p dir="ltr">This application creates an interface between Google Chat and the robot, working as a Google Chat client on your computer.</p>
<p dir="ltr">When you choose to give control of the robot to someone who is chatting with you, that person can start to control the robot by sending messages with a single character which the application sends by serial to the robot.</p>
<p><iframe src="http://www.youtube.com/embed/LZ_ZDV349CY" frameborder="0" width="640" height="360"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/googlechatrobotcontroller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>skypeRobotController</title>
		<link>http://magabot.cc/skyperobotcontroller/</link>
		<comments>http://magabot.cc/skyperobotcontroller/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:08:36 +0000</pubDate>
		<dc:creator>XicoMBD</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://magabot.cc/?p=50</guid>
		<description><![CDATA[Download: http://code.magabot.cc/skyperobotcontroller/overview This application creates an interface between skype and the robot, working with the skype client installed on your computer. When you choose to...]]></description>
			<content:encoded><![CDATA[<p><strong>Download</strong>: <a href="http://code.magabot.cc/skyperobotcontroller/overview" rel="nofollow">http://code.magabot.cc/skyperobotcontroller/overview</a></p>
<p>This application creates an interface between skype and the robot, working with the skype client installed on your computer.</p>
<p>When you choose to give control of the robot to someone who is chatting with you, that person can start to control the robot by sending messages with a single character which the application sends by serial to the robot.</p>
<p>To test it , you need to have the Skype4COM lib installed.</p>
<ol>
<li>If you don&#8217;t have it, download it here (<a href="http://developer.skype.com/accessories" rel="nofollow">http://developer.skype.com/accessories</a>) and install as it says here (<a href="http://donchevp.blogspot.com/2008/08/skype4com-lib-how-to-register-skype.html">http://donchevp.blogspot.com/2008/08/skype4com-lib-how-to-register-skype.html</a>):</li>
<li>Find the Skype4COM.dll file on your computer (typically it is in : C:\Program Files\Common Files\Skype)</li>
<li>Go to your Start Menu -&gt; Run &#8230;</li>
<li>Type cmdIn the command prompt type : regsvr32 Skype4COM.dll or &#8220;regsvr32 C:\Program Files\Common Files\Skype\Skype4COM.dll&#8221; depending on in which</li>
</ol>
<p><iframe src="http://www.youtube.com/embed/L7mLuno10fc" frameborder="0" width="640" height="360"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://magabot.cc/skyperobotcontroller/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
