Click here to Skip to main content
15,903,385 members
Articles / Programming Languages / C#
Article

A USB HID Component for C#

Rate me:
Please Sign up or sign in to vote.
4.12/5 (86 votes)
22 Mar 2007CPOL1 min read 2M   68.6K   241   339
A component to communicate with a USB HID device

Introduction

This article is about a USB HID component which enables you to communicate with HID devices over USB. There is no default component available for USB at this moment, and this component should provide you with a good starting point when writing your own USB HID enabled applications.

This article provides a sample application as well as the component itself.

Background

The component is based on various sources. A good start for USB in C# is this website. Also the book USB COMPLETE (third edition) by Jan Axelson is a must read for anyone wishing to incorporate USB HID into her/his application.

The component is developed during a project at the Avans Hogeschool in 's-Hertogenbosch, The Netherlands.

Using the Code

In the provided sample application, there is a good demonstration on how to include the component. Moreover, the use of the component is very well demonstrated. The only thing that must be done in your own application is implementing the events.

You'll also have to override the following functions in your form, so that your program is USB aware. In the property box, you'll have to provide a vendor and product id of your USB device in order to detect the correct device.

C#
protected override void OnHandleCreated(EventArgs e)
{
base.OnHandleCreated(e);
usb.RegisterHandle(Handle);
}
protected override void WndProc(ref Messagea m)
{
usb.ParseMessages(ref m);
base.WndProc(ref m); // pass message on to base form
}

Points of Interest

A mouse is always in use by Windows, and cannot be captured by your own application. This also applies to HID devices in use by other applications.

History

  • 22nd March, 2007: First version, currently in development

Updates will be posted if there is a need for them.

License

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


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

Comments and Discussions

 
GeneralRe: Call CreateFile() failed! Pin
moonz_wu8-Aug-07 21:26
moonz_wu8-Aug-07 21:26 
GeneralRe: Call CreateFile() failed! Pin
wimar16-Aug-07 7:43
wimar16-Aug-07 7:43 
GeneralRe: Call CreateFile() failed! Pin
TomXP411_112-Feb-08 5:34
TomXP411_112-Feb-08 5:34 
GeneralRe: Call CreateFile() failed! Pin
michaelrterry10-Aug-07 12:52
michaelrterry10-Aug-07 12:52 
GeneralRe: Call CreateFile() failed! Pin
wimar16-Aug-07 7:44
wimar16-Aug-07 7:44 
GeneralRe: Call CreateFile() failed! Pin
michaelrterry6-Sep-07 11:33
michaelrterry6-Sep-07 11:33 
GeneralRe: Call CreateFile() failed! Pin
Z789512316-Jul-09 16:07
Z789512316-Jul-09 16:07 
GeneralUSB/HID Pin
sswcharlie6-Jun-07 13:07
sswcharlie6-Jun-07 13:07 
I am having some difficulty in solving the problem below. Can you please send me in the right direction.

Basically all I need is to be shown how to find the USB HID table that shows each single device and where there input is going. I can then get Excel to extract details etc.


I need some advice as to what area I should be looking at to accomplish the following. Are you able to advise me or quote me a suitable asnser. I do not need anything more than set out. Dont need packet info etc. or tool kits for development. All I want to do is place the USB Instance ID beside each reading in Excel. I can then allocate each devices reading to its own table.

I am a model railroad hobbyist and wish to use system below for tracking rolling stock on the layout.

I have been searching for an answer to the situation below. This is a USB device and your advice on how to use would be appreciated.



I have purchased a couple of these devices: (USB Pen Drive for Reading RFID
tags)

http://www.rfidshop.com/index.asp?function=DISPLAYPRODUCT&productid=1120

XP Home 97 Excel
I import info into Excel via the USB RFID reading device (via Human
Interface Device).

Using one device works fine and places info in Excel (or any Windows product) at the active cell.
Using two devices both readings go in same column again in the active cell. This is ok - if I can tag each entry in the adjacent column with the USB ID, and then do a macro to tell Excel in which column to transfer each devices info, is to go.

I need to know which reader has read which tag, and how to find this information.


The XP Device Manager gives separate 'Device Instance ID' for each device eg:

USB\VID_1241&PID_E000\5&1DC3342F&0&2
USB\VID_1241&PID_E000\5&1E9A0CB1&0&2

How do I get Excel to recognise the different Device ID (2 or more units say up to 20) and tag each each entry at the 'live cell' with the individual Device ID reference.

Thanks

Charlie Harris
New Zealand

Charlie\Hobbyist

GeneralRe: USB/HID Pin
wimar12-Jun-07 22:02
wimar12-Jun-07 22:02 
GeneralRe: USB/HID Pin
sswcharlie9-Aug-07 16:06
sswcharlie9-Aug-07 16:06 
QuestionMultiple identical devices? Pin
antmason29-May-07 4:59
antmason29-May-07 4:59 
AnswerRe: Multiple identical devices? Pin
wimar30-May-07 0:09
wimar30-May-07 0:09 
Generalcommunicating other than HID Pin
ardaarda15-May-07 22:10
ardaarda15-May-07 22:10 
GeneralRe: communicating other than HID Pin
wimar16-May-07 5:50
wimar16-May-07 5:50 
QuestionA problem is observed Pin
s_stavrev24-Apr-07 5:51
s_stavrev24-Apr-07 5:51 
QuestionUSB HID Pin
kingdom197713-Apr-07 2:45
kingdom197713-Apr-07 2:45 
AnswerRe: USB HID Pin
wimar15-Apr-07 21:41
wimar15-Apr-07 21:41 
GeneralRe: USB HID Pin
kinglaws16-Apr-07 7:12
kinglaws16-Apr-07 7:12 
GeneralRe: USB HID Pin
wimar17-Apr-07 7:52
wimar17-Apr-07 7:52 
GeneralRe: USB HID Pin
kinglaws17-Apr-07 8:39
kinglaws17-Apr-07 8:39 
GeneralRe: USB HID Pin
kinglaws19-Apr-07 13:24
kinglaws19-Apr-07 13:24 
GeneralRe: USB HID Pin
Iwan Budihalim16-Aug-07 2:21
Iwan Budihalim16-Aug-07 2:21 
QuestionDetecting a HID Device [modified] Pin
BalaVikram28-Mar-07 23:47
BalaVikram28-Mar-07 23:47 
AnswerRe: Detecting a HID Device Pin
wimar29-Mar-07 4:06
wimar29-Mar-07 4:06 
GeneralRe: Detecting a HID Device Pin
BalaVikram1-Apr-07 19:49
BalaVikram1-Apr-07 19:49 

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.