How to use my device's VID and PID inside UsbDeviceFinder function of LibUsbDotNet?

1.7k Views Asked by At

I am trying to use my USB device inside my C# windows form application, I have found the VID and PID of my device from device manager and they are mentioned like below:

USB\VID_1A86&PID_7523

Now inside my code I have a function named UsbDeviceFinder which gets two integer numbers for PID and VID.

When I use the following code I get an error message which says I should use int numbers inside this function.

public static UsbDeviceFinder MyUsbFinder = new UsbDeviceFinder(1A86, 7523);

It seems like these two numbers are in HEX format. Am I supposed to convert both of them to decimal and then pass them to the function?

Even when I convert these two numbers to Decimal I get the Device not found error. How can I fix this?

1

There are 1 best solutions below

2
On

try this:

public static UsbDeviceFinder MyUsbFinder = new UsbDeviceFinder(0x1A86, 0x7523);