mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
ASUS - Added laptop model detection ASUS - Added the option to provide extra LED mappings to keyboards based on model ASUS - Removed old attempts at detecting non-key LEDs on keyboards
19 lines
472 B
C#
19 lines
472 B
C#
namespace RGB.NET.Devices.Asus
|
|
{
|
|
/// <summary>
|
|
/// Represents a type of ASUS LED as known by the ASUS SDK
|
|
/// </summary>
|
|
public enum AsusLedType
|
|
{
|
|
/// <summary>
|
|
/// An ASUS LED that is present on a device's IAuraSyncKeyboard.Keys enumerable
|
|
/// </summary>
|
|
Key,
|
|
|
|
/// <summary>
|
|
/// An ASUS LED that is present on a device's IAuraSyncDevice.Lights enumerable
|
|
/// </summary>
|
|
Light
|
|
}
|
|
}
|