vote up 4 vote down star
3

Using .Net (C#), how can you work with USB devices?

How can you detect USB events (connections/disconnections) and how do you communicate with devices (read/write).

Is there a native .Net solution to do this?

flag

4 Answers

vote up 6 vote down check

There is no native (e.g., System libraries) solution for this. That's the reason why SharpUSBLib exists as mentioned by moobaa.

If you wish to roll your own handler for USB devices, you can check out the SerialPort class of System.IO.Ports.

link|flag
vote up 3 vote down

The #usblib USB Library for .NET

link|flag
Looks like it depends on libusb. Is there anyway to do this without that kind of dependency ? – David Thibault Sep 16 '08 at 2:09
vote up 1 vote down

There is a generic toolkit WinDriver for writing USB Drivers in user mode that support #.NET as well

link|flag
vote up 0 vote down

Most USB chipsets come with drivers. Silicon Labs has one.

link|flag
This way I have a dependency on the driver itself? Is there a generic solution that will work on all machines? – David Thibault Sep 16 '08 at 2:15
You will have a dependency on both the dll and a hardware dependency on the chipset used. However, this is the quickest way to get up and running with USB communication if you have control over both the software and the hardware. – Nick Sep 16 '08 at 13:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.