mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
Merge pull request #132 from DarthAffe/SDK/CoolerMaster
Throw on LED control enable fail & added missing device indexes
This commit is contained in:
commit
9884b3230d
@ -132,7 +132,8 @@ namespace RGB.NET.Devices.CoolerMaster
|
||||
continue;
|
||||
}
|
||||
|
||||
_CoolerMasterSDK.EnableLedControl(true, index);
|
||||
if (!_CoolerMasterSDK.EnableLedControl(true, index))
|
||||
throw new RGBDeviceException("Failed to enable LED control for device " + index);
|
||||
|
||||
device.Initialize(UpdateTrigger);
|
||||
devices.Add(device);
|
||||
|
||||
@ -69,6 +69,18 @@ namespace RGB.NET.Devices.CoolerMaster
|
||||
[DeviceType(RGBDeviceType.Keyboard)]
|
||||
CK551 = 13,
|
||||
|
||||
[Description("MM830")]
|
||||
[DeviceType(RGBDeviceType.Mouse)]
|
||||
MM830 = 14,
|
||||
|
||||
[Description("CK530")]
|
||||
[DeviceType(RGBDeviceType.Keyboard)]
|
||||
CK530 = 15,
|
||||
|
||||
[Description("MK850")]
|
||||
[DeviceType(RGBDeviceType.Keyboard)]
|
||||
MK850 = 16,
|
||||
|
||||
[DeviceType(RGBDeviceType.None)]
|
||||
Default = 0xFFFF
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user