1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00

31 lines
672 B
C#

// ReSharper disable InconsistentNaming
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
namespace RGB.NET.Devices.Asus
{
/// <summary>
/// Contains list of all LEDs available for all Asus devices.
/// </summary>
public enum AsusLedIds
{
Invalid = -1,
//TODO DarthAffe 07.10.2017: Create useful Ids for all devices
MainboardLed1 = 0x01,
MainboardLed2 = 0x02,
MainboardLed3 = 0x03,
MainboardLed4 = 0x04,
MainboardLed5 = 0x05,
GraphicsCardLed1 = 0x11,
DramLed1 = 0x21,
MouseLed1 = 0x31,
KeyboardLed1 = 0x41,
}
}