Search found 3 matches

by sschaefer
Thu Mar 04, 2010 3:52 pm
Forum: Developer's Forum for Windows
Topic: LED control via HID
Replies: 15
Views: 33835

Hi Tiwen, I had the same problem. HidD_SetFeature didn't work for me either (except for the callibration). I used WriteFile instead: HidDevice *pDev = waitListItems[index]; //turn LED on pDev->buf[0] = 0x04; pDev->buf[1] = 0x01; WriteFile(pDev->handle, pDev->buf, pDev->capabilities.OutputReportByteL...
by sschaefer
Thu Dec 10, 2009 10:48 am
Forum: Developer's Forum for Windows
Topic: LED control via HID
Replies: 15
Views: 33835

Thanks for your quick answer... it works. :)
by sschaefer
Thu Dec 10, 2009 6:28 am
Forum: Developer's Forum for Windows
Topic: LED control via HID
Replies: 15
Views: 33835

LED control via HID

Hi,

I am able to get the rotation and translation values from the SpaceNavigator via HID and to rezero it with the 7-0 packet, but i am wondering which HID-packet is turning on the LED?

Thanks in advance !!