<?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>Comentarios en: Biblioteca de Arduino para AX-12</title>
	<atom:link href="http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/</link>
	<description>robots, música, cosas raras con electricidad</description>
	<lastBuildDate>Thu, 10 Jun 2010 22:05:22 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: pabloxid</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-408</link>
		<dc:creator>pabloxid</dc:creator>
		<pubDate>Sat, 27 Mar 2010 04:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-408</guid>
		<description>PuTTY. Please note that terminal is connected to Arduino via a serial-USB converter on pins 2,3. These pins are used by the SoftwareSerial library. 

In more recent implementation, I just use the FTDI chip included in Arduino, I detach it from pins 0,1 and connect it to pins 2,3. Then, I reconnect it to pins 0,1 when programming the board.</description>
		<content:encoded><![CDATA[<p>PuTTY. Please note that terminal is connected to Arduino via a serial-USB converter on pins 2,3. These pins are used by the SoftwareSerial library. </p>
<p>In more recent implementation, I just use the FTDI chip included in Arduino, I detach it from pins 0,1 and connect it to pins 2,3. Then, I reconnect it to pins 0,1 when programming the board.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Oskar Mobardov</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-406</link>
		<dc:creator>Oskar Mobardov</dc:creator>
		<pubDate>Fri, 26 Mar 2010 18:19:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-406</guid>
		<description>Hi Pablo

You are my HERO!!!!

Thank you very very very much!!!

Can u tell me please, which kind of terminal software you are using?

Best,
Oskar</description>
		<content:encoded><![CDATA[<p>Hi Pablo</p>
<p>You are my HERO!!!!</p>
<p>Thank you very very very much!!!</p>
<p>Can u tell me please, which kind of terminal software you are using?</p>
<p>Best,<br />
Oskar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: pabloxid</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-397</link>
		<dc:creator>pabloxid</dc:creator>
		<pubDate>Sat, 20 Mar 2010 21:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-397</guid>
		<description>You have to put these files into a folder under the &quot;libraries&quot; folder of yor Arduino IDE installation. Please note that this folder is not in the same place for Arduino 0018 and previous IDE releases. For 0017 and older, the folder is \hardware\libraries.  

Then, you can load this code in Arduino IDE to test the motors:

#include &lt; SoftwareSerial.h &gt;
#include &lt; ax12.h &gt;

SoftwareSerial swSerial (2, 3);

void setup()   {                
  ax12Init (1000000);
  swSerial.begin(9600);
  
  writeData (14, AX_TORQUE_ENABLE, 1, 1);        // &quot;14&quot; is the motor ID
  
}

void loop()   {
     
    int error = ping (14);
    swSerial.print (&quot;ping ID: &quot;); swSerial.print (status_id, DEC);
    swSerial.print (&quot;  int.error: &quot;); swSerial.print (error, DEC);
    swSerial.print (&quot;  status.error: &quot;); swSerial.println (status_error, DEC);
    swSerial.println (&quot; &quot;);
    
    error = readData (14, AX_PRESENT_TEMPERATURE, 1);
    swSerial.print (&quot;temperatura: &quot;); swSerial.print (status_data, DEC);
    swSerial.print (&quot;  int.error: &quot;); swSerial.print (error, DEC);
    swSerial.print (&quot;  status.error: &quot;); swSerial.println (status_error, DEC);
    swSerial.println (&quot; &quot;);
  
    error = writeData (14, AX_GOAL_POSITION_L, 2, int(random(1024)));             
    swSerial.print (&quot;goal position ID: &quot;); swSerial.print (status_id, DEC);
    swSerial.print (&quot;  int.error: &quot;); swSerial.print (error, DEC);
    swSerial.print (&quot;  status.error: &quot;); swSerial.println (status_error, DEC);
    swSerial.println (&quot; &quot;);
  
    delay (200);
  
    error = readData (14, AX_PRESENT_POSITION_L, 2);
    swSerial.print (&quot;posicion: &quot;); swSerial.print (status_data, DEC);
    swSerial.print (&quot;  int.error: &quot;); swSerial.print (error, DEC);
    swSerial.print (&quot;  status.error: &quot;); swSerial.println (status_error, DEC);
    swSerial.println (&quot; &quot;);
    
}</description>
		<content:encoded><![CDATA[<p>You have to put these files into a folder under the &#8220;libraries&#8221; folder of yor Arduino IDE installation. Please note that this folder is not in the same place for Arduino 0018 and previous IDE releases. For 0017 and older, the folder is \hardware\libraries.  </p>
<p>Then, you can load this code in Arduino IDE to test the motors:</p>
<p>#include < SoftwareSerial.h ><br />
#include < ax12.h ></p>
<p>SoftwareSerial swSerial (2, 3);</p>
<p>void setup()   {<br />
  ax12Init (1000000);<br />
  swSerial.begin(9600);</p>
<p>  writeData (14, AX_TORQUE_ENABLE, 1, 1);        // &#8220;14&#8243; is the motor ID</p>
<p>}</p>
<p>void loop()   {</p>
<p>    int error = ping (14);<br />
    swSerial.print (&#8221;ping ID: &#8220;); swSerial.print (status_id, DEC);<br />
    swSerial.print (&#8221;  int.error: &#8220;); swSerial.print (error, DEC);<br />
    swSerial.print (&#8221;  status.error: &#8220;); swSerial.println (status_error, DEC);<br />
    swSerial.println (&#8221; &#8220;);</p>
<p>    error = readData (14, AX_PRESENT_TEMPERATURE, 1);<br />
    swSerial.print (&#8221;temperatura: &#8220;); swSerial.print (status_data, DEC);<br />
    swSerial.print (&#8221;  int.error: &#8220;); swSerial.print (error, DEC);<br />
    swSerial.print (&#8221;  status.error: &#8220;); swSerial.println (status_error, DEC);<br />
    swSerial.println (&#8221; &#8220;);</p>
<p>    error = writeData (14, AX_GOAL_POSITION_L, 2, int(random(1024)));<br />
    swSerial.print (&#8221;goal position ID: &#8220;); swSerial.print (status_id, DEC);<br />
    swSerial.print (&#8221;  int.error: &#8220;); swSerial.print (error, DEC);<br />
    swSerial.print (&#8221;  status.error: &#8220;); swSerial.println (status_error, DEC);<br />
    swSerial.println (&#8221; &#8220;);</p>
<p>    delay (200);</p>
<p>    error = readData (14, AX_PRESENT_POSITION_L, 2);<br />
    swSerial.print (&#8221;posicion: &#8220;); swSerial.print (status_data, DEC);<br />
    swSerial.print (&#8221;  int.error: &#8220;); swSerial.print (error, DEC);<br />
    swSerial.print (&#8221;  status.error: &#8220;); swSerial.println (status_error, DEC);<br />
    swSerial.println (&#8221; &#8220;);</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Oskar Mobardov</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-396</link>
		<dc:creator>Oskar Mobardov</dc:creator>
		<pubDate>Sat, 20 Mar 2010 19:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-396</guid>
		<description>Dear Pablo

Thank you very much for your reply.

Can you give us your test Arduino Sketchfile (pde) for ax-12?

I&#039;ve no idee, how can i use ax12.cpp and ax12.h file with arduino editor.

Thank you.

Best regards,
Oskar</description>
		<content:encoded><![CDATA[<p>Dear Pablo</p>
<p>Thank you very much for your reply.</p>
<p>Can you give us your test Arduino Sketchfile (pde) for ax-12?</p>
<p>I&#8217;ve no idee, how can i use ax12.cpp and ax12.h file with arduino editor.</p>
<p>Thank you.</p>
<p>Best regards,<br />
Oskar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Proyecto Butiá &#124; Palmera blog</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-395</link>
		<dc:creator>Proyecto Butiá &#124; Palmera blog</dc:creator>
		<pubDate>Fri, 19 Mar 2010 06:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-395</guid>
		<description>[...] se optó por comenzar el desarrollo usando Arduino, dada la facilidad ofrecida por la biblioteca para controlar motores AX-12+, pero sin descartar una futura implementación usando el hardware [...]</description>
		<content:encoded><![CDATA[<p>[...] se optó por comenzar el desarrollo usando Arduino, dada la facilidad ofrecida por la biblioteca para controlar motores AX-12+, pero sin descartar una futura implementación usando el hardware [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: pabloxid</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-394</link>
		<dc:creator>pabloxid</dc:creator>
		<pubDate>Thu, 18 Mar 2010 11:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-394</guid>
		<description>Hi Oskar, you have to wire TX and RX together to AX12 data pin, and use this library (go to &quot;descargas&quot; section to download it).</description>
		<content:encoded><![CDATA[<p>Hi Oskar, you have to wire TX and RX together to AX12 data pin, and use this library (go to &#8220;descargas&#8221; section to download it).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Oskar Mobardov</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-391</link>
		<dc:creator>Oskar Mobardov</dc:creator>
		<pubDate>Wed, 17 Mar 2010 19:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-391</guid>
		<description>Dear Pablo

I need very urgent your help!

Can you give me a hint, how can I run my ax-12 with ardunio?

Can I you give me a hint, how I must to wire ardunio and ax-12?

Best regards,
Oskar</description>
		<content:encoded><![CDATA[<p>Dear Pablo</p>
<p>I need very urgent your help!</p>
<p>Can you give me a hint, how can I run my ax-12 with ardunio?</p>
<p>Can I you give me a hint, how I must to wire ardunio and ax-12?</p>
<p>Best regards,<br />
Oskar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Bernice Franklin</title>
		<link>http://www.pablogindel.com/2010/01/biblioteca-de-arduino-para-ax-12/comment-page-1/#comment-282</link>
		<dc:creator>Bernice Franklin</dc:creator>
		<pubDate>Tue, 16 Feb 2010 06:27:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablogindel.com/?p=270#comment-282</guid>
		<description>This article was very useful for a paper I am writing for my thesis.

Thanks

Bernice Franklin</description>
		<content:encoded><![CDATA[<p>This article was very useful for a paper I am writing for my thesis.</p>
<p>Thanks</p>
<p>Bernice Franklin</p>
]]></content:encoded>
	</item>
</channel>
</rss>
