// ReSharper disable InconsistentNaming namespace RGB.NET.Devices.Corsair; /// /// iCUE-SDK: contains a list of led groups. Led group is used as a part of led identifier /// public enum CorsairLedGroup { /// /// iCUE-SDK: for keyboard leds /// Keyboard = 0, /// /// iCUE-SDK: for keyboard leds on G keys /// KeyboardGKeys = 1, /// /// iCUE-SDK: for keyboard lighting pipe leds /// KeyboardEdge = 2, /// /// iCUE-SDK: for vendor specific keyboard leds (ProfileSwitch, DialRing, etc.) /// KeyboardOem = 3, /// /// iCUE-SDK: for mouse leds /// Mouse = 4, /// /// iCUE-SDK: for mousemat leds /// Mousemat = 5, /// /// iCUE-SDK: for headset leds /// Headset = 6, /// /// iCUE-SDK: for headset stand leds /// HeadsetStand = 7, /// /// iCUE-SDK: for memory module leds /// MemoryModule = 8, /// /// iCUE-SDK: for motherboard leds /// Motherboard = 9, /// /// iCUE-SDK: for graphics card leds /// GraphicsCard = 10, /// /// iCUE-SDK: for leds on the first channel of DIY devices and coolers /// DIY_Channel1 = 11, /// /// iCUE-SDK: for leds on the second channel of DIY devices and coolers /// DIY_Channel2 = 12, /// /// iCUE-SDK: for leds on the third channel of DIY devices and coolers /// DIY_Channel3 = 13, /// /// iCUE-SDK: for touchbar leds /// Touchbar = 14, /// /// iCUE-SDK: for game controller leds /// GameController = 15 }