I've been trying to control the LEDs on my mouse using hidapi but whenever I run hid_write() it returns -1. I've found that the error is being thrown inside the function when WriteFile() is called and that the error is "Access is denied".
There is a piece of software (iCue) to control the LEDs and using wireshark I think I've figured out what to send to the mouse:
My code:
int main() {
CorsairHIDDevices corsair_devs; //Initialize vector of HID devices
int num = detectCorsairMouseHIDDevice(corsair_devs); //Enumerates HID devices and adds the mouse devices to corsair_devs. Returns number of devices added.
hid_device* handle;
handle = hid_open(corsair_devs[0].vendor_id, corsair_devs[0].product_id, nullptr);
//Creates message to send to mouse based on info from wireshark
int logoLed = 1;
int sideLed = 1;
int scrollLed = 1;
int ledCode = logoLed + 2 * sideLed + 4 * scrollLed;
int red = 255;
int green = 0;
int blue = 0;
uint8_t buf[64] = { 0 };
buf[0] = 0x07; buf[1] = 0xaa;
buf[4] = ledCode;
buf[5] = 0x07; buf[8] = 0x64;
buf[9] = red; buf[12] = red;
buf[10] = green; buf[13] = green;
buf[11] = blue; buf[14] = blue;
buf[15] = 0x05;
hid_write(handle, buf, 64); //Sends message to mouse. Returns -1 (error).
}
When enumerated, there are 5 devices corresponding to the mouse, I'm not really sure what this means or how to figure out which one to use but I tried all of them and none of them worked. I don't have a lot of experience using hidapi; most of the code is re-purposed from here. Any help would be greatly appreciated. Thanks.
Nevermind, I got it to work. I abandoned hidapi and got it working with libusb.