Merge pull request #1436 from IceStormNG/asus-mouse-support

Remove unsupported lighting modes for  Keris Wireless Aimpoint
This commit is contained in:
Serge
2023-10-07 12:20:16 +02:00
committed by GitHub

View File

@@ -66,6 +66,15 @@
return new LightingZone[] { LightingZone.Logo };
}
public override bool IsLightingModeSupported(LightingMode lightingMode)
{
return lightingMode == LightingMode.Static
|| lightingMode == LightingMode.Breathing
|| lightingMode == LightingMode.ColorCycle
|| lightingMode == LightingMode.BatteryState
|| lightingMode == LightingMode.React;
}
public override bool HasAutoPowerOff()
{
return true;