You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 11, 2018. It is now read-only.
Hey was just working on this a little, not much experience hacking linux drivers for HID devices so maybe I'm just missing a kernel driver or something? anyway if you can help would appreciate it, I assume the damn thing is the same stupid smbus adapter as everything else.. whatever exceptions I'm fine workign through it because the powersupply is just going to burn up if I don't try ..
// Open the device using the VID, PID,
// and optionally the Serial number.
// open Corsair H80i, H100i, or H110i cooler
//
// corsair ax1200i corsairlink
// idVendor 0x1b1c Corsair
// idProduct 0x1c00
//
handle = hid_open(0x1b1c, 0x1c00, NULL);
if (!handle)
{
fprintf(stderr, "Error: Unable to open Corsair H80i, H100i or H110i CPU Cooler\n");
return 0;
}
Hey was just working on this a little, not much experience hacking linux drivers for HID devices so maybe I'm just missing a kernel driver or something? anyway if you can help would appreciate it, I assume the damn thing is the same stupid smbus adapter as everything else.. whatever exceptions I'm fine workign through it because the powersupply is just going to burn up if I don't try ..
The text was updated successfully, but these errors were encountered: