<?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: Delta robot with Arduino</title>
	<atom:link href="http://robottini.altervista.org/delta-robot-with-arduino/feed" rel="self" type="application/rss+xml" />
	<link>http://robottini.altervista.org/delta-robot-with-arduino</link>
	<description>Little robots with Arduino</description>
	<lastBuildDate>Wed, 22 May 2013 01:31:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: robottini</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-940</link>
		<dc:creator>robottini</dc:creator>
		<pubDate>Sat, 18 May 2013 05:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-940</guid>
		<description><![CDATA[12 cm upper arm, 25 cm lower arm]]></description>
		<content:encoded><![CDATA[<p>12 cm upper arm, 25 cm lower arm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sabih toor</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-938</link>
		<dc:creator>sabih toor</dc:creator>
		<pubDate>Fri, 17 May 2013 14:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-938</guid>
		<description><![CDATA[Hello! I am also building a delta robot. I want to know what is the ratio of arm and forearm in delta robot????
I need urgent help....plz reply me soon, thanks!]]></description>
		<content:encoded><![CDATA[<p>Hello! I am also building a delta robot. I want to know what is the ratio of arm and forearm in delta robot????<br />
I need urgent help&#8230;.plz reply me soon, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robottini</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-802</link>
		<dc:creator>robottini</dc:creator>
		<pubDate>Mon, 25 Mar 2013 16:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-802</guid>
		<description><![CDATA[In this part of the code:

void setup() {
  size(600,600);

  // open serial port
  myPort = new Serial(this, Serial.list()[0], 19200);
  frameRate(100);
  noCursor();
}


in the instruction:
 myPort = new Serial(this, Serial.list()[0], 19200); 

the program take the first serial port. You can see witch is your port in this mode:

println(Serial.list());
myPort = new Serial(this, Serial.list()[0], 19200); 

The first port you see after the println(Serial.list()); is the Serial.list()[0], the second is Serial.list()[1] and so on.
So, you can find your right port.]]></description>
		<content:encoded><![CDATA[<p>In this part of the code:</p>
<p>void setup() {<br />
  size(600,600);</p>
<p>  // open serial port<br />
  myPort = new Serial(this, Serial.list()[0], 19200);<br />
  frameRate(100);<br />
  noCursor();<br />
}</p>
<p>in the instruction:<br />
 myPort = new Serial(this, Serial.list()[0], 19200); </p>
<p>the program take the first serial port. You can see witch is your port in this mode:</p>
<p>println(Serial.list());<br />
myPort = new Serial(this, Serial.list()[0], 19200); </p>
<p>The first port you see after the println(Serial.list()); is the Serial.list()[0], the second is Serial.list()[1] and so on.<br />
So, you can find your right port.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Malte</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-759</link>
		<dc:creator>Malte</dc:creator>
		<pubDate>Sat, 23 Mar 2013 01:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-759</guid>
		<description><![CDATA[First of all thank you for helping me.
No I don&#039;t see the data in the Serial Monitor.
When I try to change the Serial port a get an error &quot;ArrayIndexOfBoundsException: 2&quot; and 
Stable Library
=========================================
Native lib Version = RXTX-2.2pre2
Java lib Version   = RXTX-2.1-7
WARNING:  RXTX Version mismatch
	Jar version = RXTX-2.1-7
	native lib Version = RXTX-2.2pre2
Exception in thread &quot;Animation Thread&quot; java.lang.ArrayIndexOutOfBoundsException: 2
	at DeltaArduProc___Proc.setup(DeltaArduProc___Proc.java:36)
	at processing.core.PApplet.handleDraw(Unknown Source)
	at processing.core.PApplet.run(Unknown Source)
	at java.lang.Thread.run(Thread.java:662)]]></description>
		<content:encoded><![CDATA[<p>First of all thank you for helping me.<br />
No I don&#8217;t see the data in the Serial Monitor.<br />
When I try to change the Serial port a get an error &#8220;ArrayIndexOfBoundsException: 2&#8243; and<br />
Stable Library<br />
=========================================<br />
Native lib Version = RXTX-2.2pre2<br />
Java lib Version   = RXTX-2.1-7<br />
WARNING:  RXTX Version mismatch<br />
	Jar version = RXTX-2.1-7<br />
	native lib Version = RXTX-2.2pre2<br />
Exception in thread &#8220;Animation Thread&#8221; java.lang.ArrayIndexOutOfBoundsException: 2<br />
	at DeltaArduProc___Proc.setup(DeltaArduProc___Proc.java:36)<br />
	at processing.core.PApplet.handleDraw(Unknown Source)<br />
	at processing.core.PApplet.run(Unknown Source)<br />
	at java.lang.Thread.run(Thread.java:662)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robottini</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-755</link>
		<dc:creator>robottini</dc:creator>
		<pubDate>Fri, 22 Mar 2013 03:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-755</guid>
		<description><![CDATA[Do you see any data coming from Processing to Arduino in the Serial Monitor?
Is the serial port in Processing the right serial port? es. 0 or 1 etc?
Can you explain more in deep the problem?]]></description>
		<content:encoded><![CDATA[<p>Do you see any data coming from Processing to Arduino in the Serial Monitor?<br />
Is the serial port in Processing the right serial port? es. 0 or 1 etc?<br />
Can you explain more in deep the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Malte</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-750</link>
		<dc:creator>Malte</dc:creator>
		<pubDate>Thu, 21 Mar 2013 00:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-750</guid>
		<description><![CDATA[Hi, I am having trouble with getting the Processing to send the data to the board. The Processing gets the mouse movements and coverts to data but the data doesn`t get to the Arduino. Could you help me ?
PS: My english isn`t very good.]]></description>
		<content:encoded><![CDATA[<p>Hi, I am having trouble with getting the Processing to send the data to the board. The Processing gets the mouse movements and coverts to data but the data doesn`t get to the Arduino. Could you help me ?<br />
PS: My english isn`t very good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Alves</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-461</link>
		<dc:creator>Ricardo Alves</dc:creator>
		<pubDate>Mon, 14 Jan 2013 21:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-461</guid>
		<description><![CDATA[Hi Davide.

I had a that problem when working with arduino and servos. I came to a conclusion, that happen when Arduino can&#039;t give current to all devices. The solution is to feed all devices through external voltage sources, that did the trick to me.]]></description>
		<content:encoded><![CDATA[<p>Hi Davide.</p>
<p>I had a that problem when working with arduino and servos. I came to a conclusion, that happen when Arduino can&#8217;t give current to all devices. The solution is to feed all devices through external voltage sources, that did the trick to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robottini</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-155</link>
		<dc:creator>robottini</dc:creator>
		<pubDate>Thu, 24 May 2012 09:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-155</guid>
		<description><![CDATA[I think this is an electrical problem. 
Test only the Arduino/ATtiny85, without servos connected.
Connect one servo and test, then connect the second etc.
The servos have to be a separate power (5-6) and ALL the grounds have to be connected.
Can you explain  how the servos power is made? batteries? which kind?]]></description>
		<content:encoded><![CDATA[<p>I think this is an electrical problem.<br />
Test only the Arduino/ATtiny85, without servos connected.<br />
Connect one servo and test, then connect the second etc.<br />
The servos have to be a separate power (5-6) and ALL the grounds have to be connected.<br />
Can you explain  how the servos power is made? batteries? which kind?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davide</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-154</link>
		<dc:creator>davide</dc:creator>
		<pubDate>Thu, 24 May 2012 09:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-154</guid>
		<description><![CDATA[Hi, 
congratulations for this excellent tutorial.
Hi have tried to replicate it, but my arduino reset every time after 15-20 seconds.
I have a separate 5v supply for the servo, with common mass, but arduino is still resetting...]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
congratulations for this excellent tutorial.<br />
Hi have tried to replicate it, but my arduino reset every time after 15-20 seconds.<br />
I have a separate 5v supply for the servo, with common mass, but arduino is still resetting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robottini</title>
		<link>http://robottini.altervista.org/delta-robot-with-arduino#comment-78</link>
		<dc:creator>robottini</dc:creator>
		<pubDate>Tue, 08 Nov 2011 18:33:54 +0000</pubDate>
		<guid isPermaLink="false">http://robottini.altervista.org/?p=431#comment-78</guid>
		<description><![CDATA[the code is linked inside the post: http://robottini.altervista.org/wp-content/uploads/2011/10/DeltaArduProc.zip
There is the Arduino and Processing code.]]></description>
		<content:encoded><![CDATA[<p>the code is linked inside the post: <a href="http://robottini.altervista.org/wp-content/uploads/2011/10/DeltaArduProc.zip" rel="nofollow">http://robottini.altervista.org/wp-content/uploads/2011/10/DeltaArduProc.zip</a><br />
There is the Arduino and Processing code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
