mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
29 lines
659 B
C#
29 lines
659 B
C#
// ReSharper disable InconsistentNaming
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
namespace RGB.NET.Devices.Aura
|
|
{
|
|
/// <summary>
|
|
/// Contains list of all LEDs available for all Aura devices.
|
|
/// </summary>
|
|
public enum AuraLedIds
|
|
{
|
|
Invalid = -1,
|
|
|
|
//TODO DarthAffe 07.10.2017: Create useful Ids for all devices
|
|
|
|
MainboardAudio1 = 0x01,
|
|
MainboardAudio2 = 0x02,
|
|
MainboardAudio3 = 0x03,
|
|
MainboardAudio4 = 0x04,
|
|
MainboardRGBStrip1 = 0x05,
|
|
|
|
GraphicsCardLed1 = 0x11,
|
|
|
|
MouseLed1 = 0x21,
|
|
|
|
KeyboardLed1 = 0x31,
|
|
}
|
|
}
|