Add NZXT Kraken driver

Driver should work for NZXT Kraken X42/X52/X62/X72. Most of the color
modes and settings are already working. However, there are currently
some limitations in settings different ring and logo modes.
This commit is contained in:
Martin Hartl 2020-04-07 20:14:31 +02:00 committed by Adam Honse
parent 6fd6c7f176
commit facfa05062
7 changed files with 672 additions and 0 deletions

View file

@ -310,6 +310,7 @@ void DetectHyperXKeyboardControllers(std::vector<RGBController*>& rgb_controller
void DetectThermaltakeRiingControllers(std::vector<RGBController*>& rgb_controllers);
void DetectRGBFusion2USBControllers(std::vector<RGBController*> &rgb_controllers);
void DetectRedragonControllers(std::vector<RGBController*>& rgb_controllers);
void DetectNZXTKrakenControllers(std::vector<RGBController*>& rgb_controllers);
/******************************************************************************************\
* *
@ -350,6 +351,7 @@ void DetectRGBControllers(void)
DetectThermaltakeRiingControllers(rgb_controllers);
DetectRGBFusion2USBControllers(rgb_controllers);
DetectRedragonControllers(rgb_controllers);
DetectNZXTKrakenControllers(rgb_controllers);
DetectE131Controllers(rgb_controllers);