mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
_CoolerMasterSDK.EnableLedControl(true, index);
|
if (!_CoolerMasterSDK.EnableLedControl(true, index))
|
||||||
|
throw new RGBDeviceException("Failed to enable LED control for device " + index);
|
||||||
|
|
||||||
device.Initialize(UpdateTrigger);
|
device.Initialize(UpdateTrigger);
|
||||||
devices.Add(device);
|
devices.Add(device);
|
||||||
|
|||||||
@ -69,6 +69,18 @@ namespace RGB.NET.Devices.CoolerMaster
|
|||||||
[DeviceType(RGBDeviceType.Keyboard)]
|
[DeviceType(RGBDeviceType.Keyboard)]
|
||||||
CK551 = 13,
|
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)]
|
[DeviceType(RGBDeviceType.None)]
|
||||||
Default = 0xFFFF
|
Default = 0xFFFF
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user