<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Serial Communication: Sending Variables to the Arduino</title>
	<atom:link href="http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/feed" rel="self" type="application/rss+xml" />
	<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino</link>
	<description>Interaction Design and Digital Art</description>
	<lastBuildDate>Thu, 01 Sep 2011 10:01:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Robin Pooley</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-8777</link>
		<dc:creator>Robin Pooley</dc:creator>
		<pubDate>Thu, 01 Sep 2011 10:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-8777</guid>
		<description>Really great work!
Thank you.

I am looking to build an LED cube and want it to represent activity on my companies system. I want the cubes lights to flicker when a user connects to the site or requests a page and want red LED&#039;s to light up when an error occurs. I will keep you posted as to my progress :-) Thanks again.</description>
		<content:encoded><![CDATA[<p>Really great work!<br />
Thank you.</p>
<p>I am looking to build an LED cube and want it to represent activity on my companies system. I want the cubes lights to flicker when a user connects to the site or requests a page and want red LED&#8217;s to light up when an error occurs. I will keep you posted as to my progress :-) Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-8774</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Tue, 23 Aug 2011 02:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-8774</guid>
		<description>I keep getting the error message &quot;cannot convert from String to char[]&quot; for the line char buff[]= &quot;)000000000&quot;; when trying to export as an applet. Any suggestions?</description>
		<content:encoded><![CDATA[<p>I keep getting the error message &#8220;cannot convert from String to char[]&#8221; for the line char buff[]= &#8220;)000000000&#8243;; when trying to export as an applet. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-8744</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 06 Jul 2011 20:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-8744</guid>
		<description>Thank you very much, I considered that might be the case, As I am still learning the basics, I don&#039;t always understand the aesthetics written into the code! This is very instructional as well.</description>
		<content:encoded><![CDATA[<p>Thank you very much, I considered that might be the case, As I am still learning the basics, I don&#8217;t always understand the aesthetics written into the code! This is very instructional as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-8743</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Wed, 06 Jul 2011 14:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-8743</guid>
		<description>It&#039;s been a while since I&#039;ve looked at this code, but I believe it adds a bit of easing to the motion of the slider by averaging the current position and the mouse position. If I&#039;m understanding it right, p=thesize-(mouseY-ypos) should work fine to.</description>
		<content:encoded><![CDATA[<p>It&#8217;s been a while since I&#8217;ve looked at this code, but I believe it adds a bit of easing to the motion of the slider by averaging the current position and the mouse position. If I&#8217;m understanding it right, p=thesize-(mouseY-ypos) should work fine to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-8740</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 06 Jul 2011 12:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-8740</guid>
		<description>Hi, thanks for your example. Was wondering if you could explain the formula for the p variable. p=(3*p+(thesize-(mouseY-ypos)))/4;  I can&#039;t seem to grasp what this is doing!! I know it works, but would like to understand it.</description>
		<content:encoded><![CDATA[<p>Hi, thanks for your example. Was wondering if you could explain the formula for the p variable. p=(3*p+(thesize-(mouseY-ypos)))/4;  I can&#8217;t seem to grasp what this is doing!! I know it works, but would like to understand it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guilherme Martins : RGB Mixer &#8211; Processing to Arduino</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-6003</link>
		<dc:creator>Guilherme Martins : RGB Mixer &#8211; Processing to Arduino</dc:creator>
		<pubDate>Thu, 22 Jul 2010 15:07:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-6003</guid>
		<description>[...] the Processing side, I am using a slider class adapted from anthonymatox.com, and I created 3 instances of this class (I assume you understand the concept of class). The [...]</description>
		<content:encoded><![CDATA[<p>[...] the Processing side, I am using a slider class adapted from anthonymatox.com, and I created 3 instances of this class (I assume you understand the concept of class). The [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tony</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-3203</link>
		<dc:creator>tony</dc:creator>
		<pubDate>Wed, 23 Sep 2009 18:29:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-3203</guid>
		<description>The other code, run on the computer which communicates to the external &lt;a href=&quot;http://www.arduino.cc&quot; rel=&quot;nofollow&quot;&gt;Arduino&lt;/a&gt; board via usb, is scripted in a language called &lt;a href=&quot;http://www.processing.org&quot; rel=&quot;nofollow&quot;&gt;Processing&lt;/a&gt;. The language is based on Java and remains quite similar to it, aside from some nice simplifications and many built in functions for working with graphics. The basic structure of the language is the same.

You can see more information about it on the &lt;a href=&quot;http://www.processing.org&quot; rel=&quot;nofollow&quot;&gt;Processing site&lt;/a&gt; as well as download it for free. &lt;a href=&quot;http://www.arduino.cc&quot; rel=&quot;nofollow&quot;&gt;Arduino&lt;/a&gt; is actually a sister project of &lt;a href=&quot;http://www.processing.org&quot; rel=&quot;nofollow&quot;&gt;Processing&lt;/a&gt; and the &lt;a href=&quot;http://www.arduino.cc&quot; rel=&quot;nofollow&quot;&gt;Arduino&lt;/a&gt; language, although built on C is modeled after &lt;a href=&quot;http://www.processing.org&quot; rel=&quot;nofollow&quot;&gt;Processing&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>The other code, run on the computer which communicates to the external <a href="http://www.arduino.cc" rel="nofollow">Arduino</a> board via usb, is scripted in a language called <a href="http://www.processing.org" rel="nofollow">Processing</a>. The language is based on Java and remains quite similar to it, aside from some nice simplifications and many built in functions for working with graphics. The basic structure of the language is the same.</p>
<p>You can see more information about it on the <a href="http://www.processing.org" rel="nofollow">Processing site</a> as well as download it for free. <a href="http://www.arduino.cc" rel="nofollow">Arduino</a> is actually a sister project of <a href="http://www.processing.org" rel="nofollow">Processing</a> and the <a href="http://www.arduino.cc" rel="nofollow">Arduino</a> language, although built on C is modeled after <a href="http://www.processing.org" rel="nofollow">Processing</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Louw H</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-3198</link>
		<dc:creator>Louw H</dc:creator>
		<pubDate>Wed, 23 Sep 2009 09:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-3198</guid>
		<description>Hi there, I know this sounds stupid, but is that code (not the arduino code - the processing and slider class) written in Java? It looks the same? If not please inform me. BTW, i like your idea very much! Great work!</description>
		<content:encoded><![CDATA[<p>Hi there, I know this sounds stupid, but is that code (not the arduino code &#8211; the processing and slider class) written in Java? It looks the same? If not please inform me. BTW, i like your idea very much! Great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tony</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-1088</link>
		<dc:creator>tony</dc:creator>
		<pubDate>Fri, 29 May 2009 19:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-1088</guid>
		<description>The problem is on line 38 of the slider class.
I have a little problem with my CMS which will be fixed very soon. The ampersands in my code turn into funny strings. If you just fix that in the conditional statement on line 38 it should work fine. It should look like this

if ((mouseY&lt;=ypos+thesize+10) &amp;&amp; (mouseY&gt;=ypos-10)) {</description>
		<content:encoded><![CDATA[<p>The problem is on line 38 of the slider class.<br />
I have a little problem with my CMS which will be fixed very soon. The ampersands in my code turn into funny strings. If you just fix that in the conditional statement on line 38 it should work fine. It should look like this</p>
<p>if ((mouseY&lt;=ypos+thesize+10) &#038;&#038; (mouseY&gt;=ypos-10)) {</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The guy that doesn't know any further (ShowgetteR)</title>
		<link>http://anthonymattox.com/serial-communication-sending-variables-to-the-arduino/comment-page-1#comment-1060</link>
		<dc:creator>The guy that doesn't know any further (ShowgetteR)</dc:creator>
		<pubDate>Thu, 28 May 2009 19:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonymattox.com/?p=1005#comment-1060</guid>
		<description>I tried everything, but I always get the same error:

&quot;A web color (such as #ffcc00) must be six digits.&quot;

Below that:

&quot;Bad error line: -2&quot;

I really don&#039;t know how to move on, what am I doing wrong? I just need to send these values quickly, as I just want to regulate 2 motors because I have no Potentiometers left...
Any help would be appretiated.</description>
		<content:encoded><![CDATA[<p>I tried everything, but I always get the same error:</p>
<p>&#8220;A web color (such as #ffcc00) must be six digits.&#8221;</p>
<p>Below that:</p>
<p>&#8220;Bad error line: -2&#8243;</p>
<p>I really don&#8217;t know how to move on, what am I doing wrong? I just need to send these values quickly, as I just want to regulate 2 motors because I have no Potentiometers left&#8230;<br />
Any help would be appretiated.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

