views:

159

answers:

2

Hi,

I've got this nice USB barcode scanner and I'd like to readthe input using the USB driver and not the keyboard input.

How can this be accomplished using .NET? any ready libraries? I couldn't find anything of real use...

Thanks!

+1  A: 

If it is a USB reader, you should find the .net drivers that come with it, such that you get a class which provides the IO and perhaps more functionality.

If the scanner has internally a USB to Serial converter, then you should see in your Device Manager which COM port is in use by the scanner. In that case, you can use the SerialPort class for communication to the device. Note that you should set the settings (i.e. baudrate, parity bit, stop bit, etc) correct before you can have any communication.

Henri
+1. You beat me to it. That was almost word for word what I was about to suggest, and it's what we've done in our projects.
David Stratton
A lot of devices are interally high-speed serial with a USB connection, but without exposing an actual serial port. In this case, you may be able to determine the chipset and write against those drivers directly. FTDI is a very common choice, and they expose their devices via their [D2XX](http://www.ftdichip.com/Drivers/D2XX.htm) library.
Stephen Cleary
Great - I'' try that one. sounds good :)Thanks henri.
roman
A: 

You can read (and control) the device using USB HID reports.

http://www.codeproject.com/KB/cs/USB_HID.aspx

http://www.florian-leitner.de/index.php/2007/08/03/hid-usb-driver-library/

thomask