From 72da2b6bdf14eae4f92c25324838603600d714e8 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 27 Aug 2023 21:40:01 +0200 Subject: [PATCH 1/2] Added LedIds for Indicator-LEDs (like NumLock) --- RGB.NET.Core/Leds/LedId.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/RGB.NET.Core/Leds/LedId.cs b/RGB.NET.Core/Leds/LedId.cs index dff98a5d..18bb0b50 100644 --- a/RGB.NET.Core/Leds/LedId.cs +++ b/RGB.NET.Core/Leds/LedId.cs @@ -372,12 +372,20 @@ public enum LedId Keyboard_Custom127 = 0x0000707F, Keyboard_Custom128 = 0x00007080, + Keyboard_IndicatorNumLock = 0x00008001, + Keyboard_IndicatorCapsLock = 0x00008002, + Keyboard_IndicatorScrollLock = 0x00008003, + Keyboard_IndicatorWinLock = 0x00008004, + Keyboard_IndicatorPower = 0x00008005, + Keyboard_IndicatorMuted = 0x00008006, + Keyboard_IndicatorMacro = 0x00008007, + /*### Mouse ###*/ Mouse1 = 0x00100001, Mouse2 = 0x00100002, Mouse3 = 0x00100003, Mouse4 = 0x00100004, - Mouse5 = 0x00100005, + Mouse5 = 0x00100005, Mouse6 = 0x00100006, Mouse7 = 0x00100007, Mouse8 = 0x00100008, From 5707a247ee8360475beefa16499dd34029341ac9 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 27 Aug 2023 21:41:41 +0200 Subject: [PATCH 2/2] Removed excessive spaces --- RGB.NET.Core/Leds/LedId.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RGB.NET.Core/Leds/LedId.cs b/RGB.NET.Core/Leds/LedId.cs index 18bb0b50..43a6a703 100644 --- a/RGB.NET.Core/Leds/LedId.cs +++ b/RGB.NET.Core/Leds/LedId.cs @@ -385,7 +385,7 @@ public enum LedId Mouse2 = 0x00100002, Mouse3 = 0x00100003, Mouse4 = 0x00100004, - Mouse5 = 0x00100005, + Mouse5 = 0x00100005, Mouse6 = 0x00100006, Mouse7 = 0x00100007, Mouse8 = 0x00100008,