Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a single button USB controller, but it did not come with any drivers (simply a Windows program that communicates with it directly for its intended purpose).

USB Fidget
Vendor ID: 0x1d34
Product ID: 0x0001
Product name: DL100A Dream Cheeky Generic Controller

So, I would like to be able to read whether or not the button is being pressed. My main development environment is Mac, but I'd like the solution to run on Windows too. So ideally a cross platform solution would be best.

I can find pieces of code for other devices by the same manufacturer but there are differences in Product ID so the code does not work and I lack understanding to change anything other than the vendor/product.

As far as I understand it I need to poll the USB device with a feature request packet?

Is there some software I can use to "watch" the USB device so I can see what is actually happening when I press the button? If not, how would I go about writing some myself?

share|improve this question

2 Answers

basically on MacOs very huge amount of usb devices work through IOUserClient. This standart class provide to user mode programs ability to control device without kernel mode driver (by using usermode part of IOKit framework). To sniff for usb packets you can use USB Prober, start from this article http://developer.apple.com/library/mac/#qa/qa1370/_index.html

On windows standart way - standart USB driver + standart HID driver, no need in specific vendor driver if they not develop some additional functionality over standart. You can use any of commercial or freeware tools to sniff usb packets - like this one http://www.hhdsoftware.com/usb-monitor

share|improve this answer
USB Prober shows me a lot of information, including the interrupt endpoint that I need to check. But the information is the same regardless of the state of the button. So I still have no idea how to proceed. Will check the Windows software... – matt Sep 25 '12 at 14:06
Need to compile IOUSBFamilly with logging support. IOKit don`t provide filtering capabilities in driver stack =(. Windows approach is most simple of couse – izlesa Sep 25 '12 at 17:42

I don't know of any cross platform way to handle it. This is the presentation I point people to for how to create a driver app for a random piece of HID hardware:

https://developer.apple.com/videos/wwdc/2011/?id=207

share|improve this answer
The part germain to writing a HID driver starts on slide 44. – Thane Norton Sep 25 '12 at 15:53
Thanks, I've downloaded the PDF. I've also made some headway with the Ruby code I linked above. I did some Sniffing in Windows and found the values the device returns. So now it's just a matter of wrapping that information cross platform using libusb. – matt Sep 25 '12 at 22:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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