diff --git a/RGB.NET.Core/Devices/RGBDeviceLighting.cs b/RGB.NET.Core/Devices/RGBDeviceLighting.cs
index 7aff222..b362dc9 100644
--- a/RGB.NET.Core/Devices/RGBDeviceLighting.cs
+++ b/RGB.NET.Core/Devices/RGBDeviceLighting.cs
@@ -7,14 +7,19 @@ namespace RGB.NET.Core
///
public enum RGBDeviceLighting
{
+ ///
+ /// The doesn't support lighting,
+ ///
+ None = 0,
+
///
/// The supports per-key-lightning.
///
- Key = 0,
+ Key = 1,
///
/// The supports per-keyboard-lightning.
///
- Keyboard = 1,
+ Keyboard = 2,
}
}