<span style="background-color: rgb(255, 255, 255);">HI, </span><span style="background-color: rgb(255, 255, 255);" id="result_box" class="" lang="en"><span style="" title="">I have no arduino one hand, you could try installing the latest Arduino IDE, is for the UNO plate.<br>
</span>I
 noticed that in 2.1 are defined Firmat chipset ATMEGA xxx in the file 
named firmata.h chipsets there are defined outputs and inputs, not sure,
 but could include a chip or model, remember that the FTDI system but 
not <span style="" title="">necessary with an Arduino</span></span><span style="background-color: rgb(255, 255, 255);"> UNO.</span><br>
<br>
The Uno differs from all preceding boards in that it does not use the FTDI USB-to-serial driver chip. Instead, it features the <span class="wikiword">Atmega8U2</span> programmed as a USB-to-serial converter. (arduino.cc)<br style="background-color: rgb(255, 255, 255);">

<br style="background-color: rgb(255, 255, 255);">
<span style="background-color: rgb(255, 255, 255);">Below define of plates, chips and inputs/outputs</span><br>
<br>
Try de solutions and keep working<br>
<br>
<br>
José<br>
<br>
<br>
<br>
<br>
==============================================================================<br>
 * MACROS<br>
 *============================================================================*/<br>
<br>
/* shortcut for setFirmwareNameAndVersion() that uses __FILE__ to set the<br>
 * firmware name.  It needs to be a macro so that __FILE__ is included in the<br>
 * firmware source file rather than the library source file.<br>
 */<br>
#define setFirmwareVersion(x, y)   setFirmwareNameAndVersion(__FILE__, x, y)<br>
<br>
// total number of pins currently supported<br>
#if defined(__AVR_ATmega168__) || defined(__AVR_ATmega328P__) // Arduino NG and Diecimila<br>
#define TOTAL_ANALOG_PINS       8<br>
#define TOTAL_DIGITAL_PINS      22 // 14 digital + 8 analog<br>
#define TOTAL_PORTS             3 // total number of ports for the board<br>
#define ANALOG_PORT             2 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        14 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       13 // digital pin to blink version on<br>
#define FIRST_SERVO_PIN         2 // pin# of the first servo pin<br>
#elif defined(__AVR_ATmega8__)  // old Arduinos<br>
#define TOTAL_ANALOG_PINS       6<br>
#define TOTAL_DIGITAL_PINS      20 // 14 digital + 6 analog<br>
#define TOTAL_PORTS             3  // total number of ports for the board<br>
#define ANALOG_PORT             2  // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        14 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       13 // digital pin to blink version on<br>
#define FIRST_SERVO_PIN         2 // pin# of the first servo pin<br>
#elif defined(__AVR_ATmega1280__)// Arduino Mega<br>
#define TOTAL_ANALOG_PINS       16<br>
#define TOTAL_DIGITAL_PINS      70 // 54 digital + 16 analog<br>
#define TOTAL_PORTS             9 // total number of ports for the board<br>
#define ANALOG_PORT             8 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        54 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       13 // digital pin to blink version on<br>
#define FIRST_SERVO_PIN         2 // pin# of the first servo pin<br>
#elif defined(__AVR_ATmega128__)// Wiring<br>
#define TOTAL_ANALOG_PINS       8<br>
#define TOTAL_DIGITAL_PINS      51<br>
#define TOTAL_PORTS             7 // total number of ports for the board<br>
#define ANALOG_PORT             5 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        40 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       48 // digital pin to blink version on<br>
#define FIRST_SERVO_PIN         8 // pin# of the first servo pin<br>
#elif defined(__AVR_AT90USB162__) // Teensy<br>
#define TOTAL_ANALOG_PINS       0<br>
#define TOTAL_DIGITAL_PINS      21 // 21 digital + no analog<br>
#define TOTAL_PORTS             4 // total number of ports for the board<br>
#define ANALOG_PORT             3 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        21 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       6 // digital pin to blink version on<br>
#elif defined(__AVR_ATmega32U4__) // Teensy<br>
#define TOTAL_ANALOG_PINS       12<br>
#define TOTAL_DIGITAL_PINS      25 // 11 digital + 12 analog<br>
#define TOTAL_PORTS             4 // total number of ports for the board<br>
#define ANALOG_PORT             3 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        11 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       11 // digital pin to blink version on<br>
#elif defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__) // Teensy++<br>
#define TOTAL_ANALOG_PINS       8<br>
#define TOTAL_DIGITAL_PINS      46 // 38 digital + 8 analog<br>
#define TOTAL_PORTS             6 // total number of ports for the board<br>
#define ANALOG_PORT             5 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        38 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       6 // digital pin to blink version on<br>
#elif defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644__)  // Sanguino<br>
#define TOTAL_ANALOG_PINS       8<br>
#define TOTAL_DIGITAL_PINS      32 // 24 digital + 8 analog<br>
#define TOTAL_PORTS             4 // total number of ports for the board<br>
#define ANALOG_PORT             3 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        24 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       0 // digital pin to blink version on<br>
#elif defined(__AVR_ATmega645__)  // Illuminato<br>
#define TOTAL_ANALOG_PINS       6<br>
#define TOTAL_DIGITAL_PINS      42 // 36 digital + 6 analog<br>
#define TOTAL_PORTS             6 // total number of ports for the board<br>
#define ANALOG_PORT             4 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        36 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       13 // digital pin to blink version on<br>
#else // anything else<br>
#define TOTAL_ANALOG_PINS       6<br>
#define TOTAL_DIGITAL_PINS      14<br>
#define TOTAL_PORTS             3 // total number of ports for the board<br>
#define ANALOG_PORT             2 // port# of analog used as digital<br>
#define FIRST_ANALOG_PIN        14 // pin# corresponding to analog 0<br>
#define VERSION_BLINK_PIN       13 // digital pin to blink version on<br>
#endif<br>
<br>
<br>
<br>
#endif /* Firmata_h */<br><div class="gmail_quote">2010/10/18 tim vets <span dir="ltr">&lt;<a href="mailto:timvets@gmail.com">timvets@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><span style="font-family: Georgia,&#39;Times New Roman&#39;,Times,serif; font-size: 14px; color: rgb(85, 85, 85); line-height: 23px;">from </span><a href="http://arduino.cc/en/Main/Hardware" target="_blank">http://arduino.cc/en/Main/Hardware</a> :</div>


<div><span style="font-family: Georgia,&#39;Times New Roman&#39;,Times,serif; font-size: 14px; color: rgb(85, 85, 85); line-height: 23px;">&quot;It is similar to the Duemilanove, but has a different USB-to-serial chip the</span><span style="font-family: Georgia,&#39;Times New Roman&#39;,Times,serif; font-size: 14px; color: rgb(85, 85, 85); line-height: 23px;"> </span><span style="font-family: Georgia,&#39;Times New Roman&#39;,Times,serif; font-size: 14px; color: rgb(85, 85, 85); line-height: 23px;"><span>ATMega8U2&quot;</span></span><br>


</div><div>may have something to do with it...?</div><div>gr,</div><div>Tim</div><div><br></div><div><br><div class="gmail_quote">2010/10/18 alessandro contini <span dir="ltr">&lt;<a href="mailto:aless.contini@gmail.com" target="_blank">aless.contini@gmail.com</a>&gt;</span><br>


<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div></div><div class="h5">hey there,<div>i&#39;m teaching in an intensive course about Arduino in an italian design school.</div>
<div><br></div>

<div>some of the students are using Pduino for their final projects.</div><div>the point is i have a student who bought the new Arduino UNO board, we tried to use it with Firmata 2.2 and Pduino, but it doesn&#39;t work.</div>




<div>when loading the arduino-test it loads only a part of the patch in the console view. it recognizes the board as an Arduino UNO, but then it says &quot;can&#39;t create&quot;</div><div><br></div><div>i tried to search for the problem with google, but we haven&#39;t found anything useful.</div>




<div>maybe someone encountered a similar problem? :)</div><div><div><br></div><div><br></div>alessandro contini + <a href="http://www.cntlsn.com" target="_blank">www.cntlsn.com</a> <br>
</div>
<br></div></div>_______________________________________________<br>
<a href="mailto:Pd-list@iem.at" target="_blank">Pd-list@iem.at</a> mailing list<br>
UNSUBSCRIBE and account-management -&gt; <a href="http://lists.puredata.info/listinfo/pd-list" target="_blank">http://lists.puredata.info/listinfo/pd-list</a><br>
<br></blockquote></div><br></div>
<br>_______________________________________________<br>
<a href="mailto:Pd-list@iem.at">Pd-list@iem.at</a> mailing list<br>
UNSUBSCRIBE and account-management -&gt; <a href="http://lists.puredata.info/listinfo/pd-list" target="_blank">http://lists.puredata.info/listinfo/pd-list</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br><a href="http://arselectronicachile.blogspot.com" target="_blank">http://arselectronicachile.blogspot.com</a><br><a href="http://www.myspace.com/santorcuato" target="_blank">http://www.myspace.com/santorcuato</a><br>
<a href="http://comunicacionnativa.blogspot.com/" target="_blank">http://comunicacionnativa.blogspot.com/</a>  <br><br><br><br>