Files
archived-g-helper/app/Peripherals/Mouse/Models/P711.cs

73 lines
1.5 KiB
C#

namespace GHelper.Peripherals.Mouse.Models
{
public class P711 : AsusMouse
{
private static string[] POLLING_RATES = { "125Hz", "250Hz", "500Hz", "1000Hz" };
public P711() : base(0x0B05, 0x1A70, "mi_01", true)
{
}
protected P711(ushort vendorId, bool wireless) : base(0x0B05, vendorId, "mi_01", wireless)
{
}
public override int DPIProfileCount()
{
return 4;
}
public override string GetDisplayName()
{
return "ROG Gladius III (Wireless)";
}
public override string[] PollingRateDisplayStrings()
{
return POLLING_RATES;
}
public override int ProfileCount()
{
throw new NotImplementedException();
}
public override int MaxDPI()
{
return 36_000;
}
public override bool HasLiftOffSetting()
{
return true;
}
public override bool HasRGB()
{
return true;
}
public override bool HasEnergySettings()
{
return true;
}
public override bool HasAngleSnapping()
{
return true;
}
}
public class P711Wired : P711
{
public P711Wired() : base(0x1A72, false)
{
}
public override string GetDisplayName()
{
return "ROG Gladius III (Wired)";
}
}
}