Click here to Skip to main content
15,868,141 members
Articles / Desktop Programming / WPF

A USB Library to Detect USB Devices

Rate me:
Please Sign up or sign in to vote.
4.90/5 (122 votes)
21 Sep 2014CPOL3 min read 706.9K   87.8K   444   206
A USB library to detect USB devices, and manage Attach and Detach events

 

 

Introduction 

This article is about a USB library which enables you to manage Attach and Detach events of USB devices and detect your own device. I was not able to find a working code written in C# and which runs under both Windows XP and Windows 7 x64. I therefore decided to write my own code. I read various articles about USB Attach and Detach detection, and got some help from both the Microsoft website and the PINVOKE.NET website (http://www.pinvoke.net).

This code is a separate module that you can link to your own project. The code explains how to add additional properties.

Using the Code

Updating your Code

Windows Forms 

  • Add a reference to your project.
  • Add the using directive in your code:
    C#
    using USBClassLibrary;
  • Declare an instance of USBClass.
    C#
    private USBClassLibrary.USBClass USBPort;
  • Declare an instance List<T> of DeviceProperties if you want to read the properties of your devices.
    C#
    private List<USBClassLibrary.USBClass.DeviceProperties> ListOfUSBDeviceProperties;
  • Create an instance of the USBClass class.
    C#
    USBPort = new USBClass();
  • Create an instance List<T> of DeviceProperties class.
    C#
    ListOfUSBDeviceProperties = new List<USBClassLibrary.USBClass.DeviceProperties>();
  • Add handlers for the events exposed by the USBClass class.
    C#
    USBPort.USBDeviceAttached += new USBClass.USBDeviceEventHandler(USBPort_USBDeviceAttached);
    USBPort.USBDeviceRemoved += new USBClass.USBDeviceEventHandler(USBPort_USBDeviceRemoved);
  • Register your form to receive Windows messages when devices are added or removed.
    C#
    USBPort.RegisterForDeviceChange(true, this.Handle);
  • Then, check if your device is not already connected:
    C#
    if (USBClass.GetUSBDevice(MyDeviceVID, MyDevicePID, 
                 ref ListOfUSBDeviceProperties, false))
    {
       //My Device is connected
       MyUSBDeviceConnected = true;
    }
  • Implement Attach and Detach handlers:
    C#
    private void USBPort_USBDeviceAttached(object sender, 
                 USBClass.USBDeviceEventArgs e)
    {
       if (!MyUSBDeviceConnected)
       {
          if (USBClass.GetUSBDevice(MyDeviceVID, MyDevicePID, 
                                    ref ListOfUSBDeviceProperties, false))
          {
             //My Device is connected
             MyUSBDeviceConnected = true;
          }
       }
    }
    private void USBPort_USBDeviceRemoved(object sender, 
                 USBClass.USBDeviceEventArgs e)
    {
       if (!USBClass.GetUSBDevice(MyDeviceVID, MyDevicePID, 
                                  ref ListOfUSBDeviceProperties, false))
       {
          //My Device is removed
          MyUSBDeviceConnected = false;
       }
    }
  • Handle Windows message in your form to pass them to the USBClass class:
    C#
    protected override void WndProc(ref Message m)
    {
       bool IsHandled = false;
       USBPort.ProcessWindowsMessage(m.Msg, m.WParam, m.LParam, ref IsHandled);
       base.WndProc(ref m);
    }

WPF 

  • Add a reference to your project.
  • Add the using directive in your code:
    C#
    using USBClassLibrary;
  • Declare an instance of USBClass.
    C#
    private USBClassLibrary.USBClass USBPort;
  • Declare an instance List<T> of the DeviceProperties class if you want to read the properties of your devices.
    C#
    private List<USBClassLibrary.USBClass.DeviceProperties> ListOfUSBDeviceProperties;
  • Create an instance of the USBClass class.
    C#
    USBPort = new USBClass();
  • Create an instance List<T> of the DeviceProperties class.
    C#
    ListOfUSBDeviceProperties = new List<USBClassLibrary.USBClass.DeviceProperties>(); 
  • Add handlers for the events exposed by the USBClass class.
    C#
    USBPort.USBDeviceAttached += new USBClass.USBDeviceEventHandler(USBPort_USBDeviceAttached);
    USBPort.USBDeviceRemoved += new USBClass.USBDeviceEventHandler(USBPort_USBDeviceRemoved);
  • Override OnSourceInitialized in order to:
    • Retrieve the Windows Handle
    • Add an event handler that receives all window messages
    • Register your form to receive Windows messages when devices are added or removed 
  • C#
    protected override void OnSourceInitialized(EventArgs e)
    {
       base.OnSourceInitialized(e);
       HwndSource source = PresentationSource.FromVisual(this) as HwndSource;
       source.AddHook(WndProc);
       //USB Connection
       USBPort.RegisterForDeviceChange(true, source.Handle);
       USBTryMyDeviceConnection();
       MyUSBDeviceConnected = false;
    } 
  • Handle Windows message in your form to pass them to the USBClass class
    C#
    private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
    {
       USBPort.ProcessWindowsMessage(msg, wParam, lParam, ref handled);
                
       return IntPtr.Zero;
    }
  • Then, check if your device is not already connected:
  • C#
    if (USBClass.GetUSBDevice(MyDeviceVID, MyDevicePID, 
                 ref ListOfUSBDeviceProperties, false))
    {
       //My Device is connected
       MyUSBDeviceConnected = true;
    }
  • Implement Attach and Detach handlers:
    C#
    private void USBPort_USBDeviceAttached(object sender, 
                 USBClass.USBDeviceEventArgs e)
    {
       if (!MyUSBDeviceConnected)
       {
          if (USBClass.GetUSBDevice(MyDeviceVID, MyDevicePID, 
                                    ref ListOfUSBDeviceProperties, false))
          {
             //My Device is connected
             MyUSBDeviceConnected = true;
          }
       }
    }
    private void USBPort_USBDeviceRemoved(object sender, 
                 USBClass.USBDeviceEventArgs e)
    {
       if (!USBClass.GetUSBDevice(MyDeviceVID, MyDevicePID, 
                                  ref ListOfUSBDeviceProperties, false))
       {
          //My Device is removed
          MyUSBDeviceConnected = false;
       }
    } 

Getting the COM Port Associated to a USB Device

If your device emulates a Serial Port, then you can retrieve its COM Port.

The GetUSBDevice function has a fourth parameter GetCOMPort:

C#
public static bool GetUSBDevice(UInt32 VID, UInt32 PID, ref List<deviceproperties> ListOfDP, bool GetCOMPort, Nullable<uint32> MI=null)

Set its value to True in your connection code and retrieve the COM Port from the DeviceProperties structure:

C#
if (USBClass.GetUSBDevice(MyDeviceVID, MyDevicePID, 
             ref ListOfUSBDeviceProperties, true))
{
   String COMPort;
   //My Device is connected
   MyUSBDeviceConnected = true;
   COMPort = DP.COMPort;
}

Compiling

In the project properties, Build tab, do not select Any CPU in the "Platform target" drop down list, pick up x86 or x64.

Updating the Code

If you need to read other device properties, simply update the code as follows:

  • Look up the SetupDiGetDeviceRegistryProperty function in MSDN and find the property you want to get.
  • Add a new variable to the DeviceProperties matching the characteristics of your property:
    C#
    public struct DeviceProperties
    {
       public string FriendlyName;
       public string DeviceDescription;
       public string DeviceType;
       public string DeviceManufacturer;
       public string DeviceClass;
       public string DeviceLocation;
       public string DevicePath;
       public string DevicePhysicalObjectName;
       public string COMPort;
    }
  • Update the GetUSBDevice function:
    C#
    public static bool GetUSBDevice(UInt32 VID, UInt32 PID, ref List<deviceproperties> ListOfDP, bool GetCOMPort, Nullable<uint32> MI=null)
    {
       ...
        DP.DevicePhysicalObjectName = String.Empty;
        if (Win32Wrapper.SetupDiGetDeviceRegistryProperty(h, ref DevInfoData, 
          (UInt32)Win32Wrapper.SPDRP.SPDRP_PHYSICAL_DEVICE_OBJECT_NAME, 
          ref RegType, intptrBuffer, BUFFER_SIZE, ref RequiredSize))
        {
          DP.DevicePhysicalObjectName = Marshal.PtrToStringAuto(intptrBuffer);
        }
        ...
    }

History

  • Feb 22, 2010
    • Article first published
  • Feb 26, 2010
    • Added code to retrieve the COM Port associated to USB Devices emulating a serial port
    • Updated documentation accordingly
  •  November 17, 2013
    • Added support to detect composite devices and fixed a bug where DeviceProperties strings were not intialized correctly. 
    • Updated Demo application by adding a "MI" field.
  • February 5, 2014
    • Added support for WPF applications: the USB Class Library is modified to remove any reference to Windows Forms specific objects. 
    • The code works on Windows 8 and Windows 8.1 too 
  • September 21, 2014
    • Added the capability to identify more than 1 identical devices returning an array of Device Properties.

 

 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Other HP
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: Get Device Handle Pin
slelong21-Dec-12 21:12
slelong21-Dec-12 21:12 
QuestionCan these interfaces be used from vb.net? Pin
Member 969370817-Dec-12 16:51
Member 969370817-Dec-12 16:51 
AnswerRe: Can these interfaces be used from vb.net? Pin
slelong18-Dec-12 7:23
slelong18-Dec-12 7:23 
GeneralMy vote of 5 Pin
soulprovidergr6-Nov-12 3:51
soulprovidergr6-Nov-12 3:51 
Great!!! Thanx Mate!
GeneralRe: My vote of 5 Pin
slelong8-Nov-12 19:47
slelong8-Nov-12 19:47 
GeneralRe: My vote of 5 Pin
soulprovidergr8-Nov-12 23:26
soulprovidergr8-Nov-12 23:26 
GeneralRe: My vote of 5 Pin
slelong9-Nov-12 7:27
slelong9-Nov-12 7:27 
GeneralRe: My vote of 5 Pin
Member 968537218-Dec-12 22:32
Member 968537218-Dec-12 22:32 
GeneralRe: My vote of 5 Pin
slelong18-Dec-12 22:34
slelong18-Dec-12 22:34 
GeneralMy vote of 1 Pin
Lavrekho16-Oct-12 9:56
Lavrekho16-Oct-12 9:56 
QuestionRead and Write data from USB device Pin
jeedigunta24-Jul-12 19:23
jeedigunta24-Jul-12 19:23 
QuestionOk thanks I can develope an aplication with USB I review this library Pin
Eliasmrmr14-Mar-12 16:44
Eliasmrmr14-Mar-12 16:44 
QuestionCan I use software to find the VID & the PID Pin
LeonHuang07261-Mar-12 20:08
LeonHuang07261-Mar-12 20:08 
AnswerRe: Can I use software to find the VID & the PID Pin
slelong3-Mar-12 12:25
slelong3-Mar-12 12:25 
GeneralRe: Can I use software to find the VID & the PID Pin
LeonHuang07267-Mar-12 21:37
LeonHuang07267-Mar-12 21:37 
GeneralRe: Can I use software to find the VID & the PID Pin
landersohn694-Jun-12 5:45
landersohn694-Jun-12 5:45 
GeneralUsing it in a windows Service Pin
alc_aardvark12-May-11 8:46
alc_aardvark12-May-11 8:46 
GeneralRe: Using it in a windows Service Pin
slelong14-May-11 3:12
slelong14-May-11 3:12 
GeneralRe: Using it in a windows Service Pin
majamer14-Jun-11 8:57
majamer14-Jun-11 8:57 
GeneralOutstanding Pin
shri_af20-Feb-11 18:26
shri_af20-Feb-11 18:26 
GeneralRe: Outstanding Pin
slelong20-Feb-11 20:02
slelong20-Feb-11 20:02 
QuestionWPF Pin
Member 768653219-Feb-11 2:12
Member 768653219-Feb-11 2:12 
AnswerRe: WPF Pin
slelong19-Feb-11 9:14
slelong19-Feb-11 9:14 
SuggestionRe: WPF Pin
markmuetz8-Aug-11 3:38
markmuetz8-Aug-11 3:38 
GeneralStill not working With FTDI Pin
Felix Collins20-Jan-11 16:38
Felix Collins20-Jan-11 16:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.