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?
|
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?
|
||
|
|
|
|
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. |
||
|
|
|
|
|
||
|
|
|
There is a generic toolkit WinDriver for writing USB Drivers in user mode that support #.NET as well |
||
|
|
|
|
Most USB chipsets come with drivers. Silicon Labs has one. |
||||
|