http://www.perlmonks.org?node_id=1019780

alexx_sh has asked for the wisdom of the Perl Monks concerning the following question:

Hello!

By now i need to work with hid by Perl. As the usb device is used development board at90sb162 + lufa generic Hid demo. Now i can connect to device, but i can't understand how read or write to it.

use Device::USB; my $usb = Device::USB->new; my $dev =$usb->find_device( 0x03eb, 0x204f ); $dev->open(); printf "Device: %04X:%04X\n", $dev->idVendor(), $dev->idProduct();
Does any help?