Developers Archive

List Statistics

  • Total Threads: 675
  • Total Posts: 2049

Phrases Used to Find This Thread

  #1  
22-05-2012 08:29 AM
Developers member admin is online now
User
 

Arduino 1.0.1 is now available (including updated Arduino Leonardo support):

http://arduino.cc/blog/2012/05/22/arduino-1-0-1-release/
http://arduino.cc/en/Main/Software
http://arduino.cc/en/Main/ReleaseNotes

The updated Leonardo code has been merged into the main Arduino
repository (https://github.com/arduino/Arduino). Note that the
bootloader is different from (and incompatible with) the one that was
included in the Arduino 1.0 release (but unsupported). Arduino 1.0.1
also includes a special upload procedure for the Leonardo.

David

_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)

  #2  
04-09-2012 09:41 PM
Developers member admin is online now
User
 

Arduino 1.0.1 is now available (including updated Arduino Leonardo support):

http://arduino.cc/blog/2012/05/22/arduino-1-0-1-release/
http://arduino.cc/en/Main/Software
http://arduino.cc/en/Main/ReleaseNotes

The updated Leonardo code has been merged into the main Arduino
repository (https://github.com/arduino/Arduino). Note that the
bootloader is different from (and incompatible with) the one that was
included in the Arduino 1.0 release (but unsupported). Arduino 1.0.1
also includes a special upload procedure for the Leonardo.

David

_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)
Hello,

I have a request for the Arduino Leonardo.

Is it possible to extend the library with a HidRea() and HidWrite(array) function and HidAssign(VID,PID) using a standard HID report?

What I mean is that it then makes it possible to communicate with the Leonardo, not using VCP's but using VID and PID.
That would make communicating with the Leonardo really great!

regards,
Arend
_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)

  #3  
06-09-2012 03:26 PM
Developers member admin is online now
User
 

Arduino 1.0.1 is now available (including updated Arduino Leonardo support):

http://arduino.cc/blog/2012/05/22/arduino-1-0-1-release/
http://arduino.cc/en/Main/Software
http://arduino.cc/en/Main/ReleaseNotes

The updated Leonardo code has been merged into the main Arduino
repository (https://github.com/arduino/Arduino). Note that the
bootloader is different from (and incompatible with) the one that was
included in the Arduino 1.0 release (but unsupported). Arduino 1.0.1
also includes a special upload procedure for the Leonardo.

David

_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)
Hello,

I have a request for the Arduino Leonardo.

Is it possible to extend the library with a HidRea() and HidWrite(array) function and HidAssign(VID,PID) using a standard HID report?

What I mean is that it then makes it possible to communicate with the Leonardo, not using VCP's but using VID and PID.
That would make communicating with the Leonardo really great!

regards,
Arend
_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)
Arend,

This sounds like a nice feature on the Arduino side. It would need
support on the host side as well though and I can't think of anything
that is (currently) beginner-friendly.

The shortest path I can imagine, at least for examples, would be a
libusb library for Processing but a quick search didn't turn up
anything already out there. Do you know of any options for
beginner-friendly cross-platform host support?

Zach Eveland

On Tue, Sep 4, 2012 at 4:41 PM, Arend Van Oosten <> wrote:
> Hello,
>
> I have a request for the Arduino Leonardo.
>
> Is it possible to extend the library with a HidRea() and HidWrite(array) function and HidAssign(VID,PID) using a standard HID report?
>
> What I mean is that it then makes it possible to communicate with the Leonardo, not using VCP's but using VID and PID.
> That would make communicating with the Leonardo really great!
>
> regards,
> Arend
> _______________________________________________
> Developers mailing list
>
> http://arduino.cc/mailman/listinfo/developers_arduino.cc

_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)

  #4  
06-09-2012 07:48 PM
Developers member admin is online now
User
 

Arduino 1.0.1 is now available (including updated Arduino Leonardo support):

http://arduino.cc/blog/2012/05/22/arduino-1-0-1-release/
http://arduino.cc/en/Main/Software
http://arduino.cc/en/Main/ReleaseNotes

The updated Leonardo code has been merged into the main Arduino
repository (https://github.com/arduino/Arduino). Note that the
bootloader is different from (and incompatible with) the one that was
included in the Arduino 1.0 release (but unsupported). Arduino 1.0.1
also includes a special upload procedure for the Leonardo.

David

_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)
Hello,

I have a request for the Arduino Leonardo.

Is it possible to extend the library with a HidRea() and HidWrite(array) function and HidAssign(VID,PID) using a standard HID report?

What I mean is that it then makes it possible to communicate with the Leonardo, not using VCP's but using VID and PID.
That would make communicating with the Leonardo really great!

regards,
Arend
_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)
Arend,

This sounds like a nice feature on the Arduino side. It would need
support on the host side as well though and I can't think of anything
that is (currently) beginner-friendly.

The shortest path I can imagine, at least for examples, would be a
libusb library for Processing but a quick search didn't turn up
anything already out there. Do you know of any options for
beginner-friendly cross-platform host support?

Zach Eveland

On Tue, Sep 4, 2012 at 4:41 PM, Arend Van Oosten <> wrote:
> Hello,
>
> I have a request for the Arduino Leonardo.
>
> Is it possible to extend the library with a HidRea() and HidWrite(array) function and HidAssign(VID,PID) using a standard HID report?
>
> What I mean is that it then makes it possible to communicate with the Leonardo, not using VCP's but using VID and PID.
> That would make communicating with the Leonardo really great!
>
> regards,
> Arend
> _______________________________________________
> Developers mailing list
>
> http://arduino.cc/mailman/listinfo/developers_arduino.cc

_______________________________________________
Developers mailing list

http://arduino.cc/mailman/listinfo/developers_arduino.cc
)
I think libusb/pyusb are going to be the nearest you can get to beginner
friendly. http://sourceforge.net/apps/trac/pyusb/

They may not be all that beginning-coder friendly, but are certainly
beginner-usb-coder friendly!

On Thu, Sep 6, 2012 at 10:26 AM, Zach Eveland <> wrote:

> Arend,
>
> This sounds like a nice feature on the Arduino side. It would need
> support on the host side as well though and I can't think of anything
> that is (currently) beginner-friendly.
>
> The shortest path I can imagine, at least for examples, would be a
> libusb library for Processing but a quick search didn't turn up
> anything already out there. Do you know of any options for
> beginner-friendly cross-platform host support?
>
> Zach Eveland
>
> On Tue, Sep 4, 2012 at 4:41 PM, Arend Van Oosten <>
> wrote:
> > Hello,
> >
> > I have a request for the Arduino Leonardo.
> >
> > Is it possible to extend the library with a HidRea() and HidWrite(array)
> function and HidAssign(VID,PID) using a standard HID report?
> >
> > What I mean is that it then makes it possible to communicate with the
> Leonardo, not using VCP's but using VID and PID.
> > That would make communicating with the Leonardo really great!
> >
> > regards,
> > Arend
> > _______________________________________________
> > Developers mailing list
> >
> > http://arduino.cc/mailman/listinfo/developers_arduino.cc
>
> _______________________________________________
> Developers mailing list
>
> http://arduino.cc/mailman/listinfo/developers_arduino.cc
>







NewsArc Lists  |  Culture Pages   |  Computing Archive  |  Media-Pages
Link to this page on your blog or website by copying the HTML code below and pasting it into your site: