mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
* Support for Strix Carry (P508) * Fixes polling rate, angle snapping and debounce for Gladius II Origin. * The Gen2 version of the TuF M3 uses 0-100 for brightness. * Adds support for ROG Strix Impact III (P518) * Import/Export feature for mice. * Suppor for Strix Impact (P303) * Support for Strix Impact II Electro Punk * Strix Carry has 50 DPI minimum and increments of 50. * Respect top-most setting of GHelper * Fixes to the buttons to be wider to fit longer translations. * Basic support for the Galdius III EVA02 * Gladius wireless and wired PIDs were switched * Add support for the chinese variant of the M4 Wireless, the P310
105 lines
2.0 KiB
C#
105 lines
2.0 KiB
C#
namespace GHelper.Peripherals.Mouse.Models
|
|
{
|
|
//P306_Wireless
|
|
public class TUFM4Wirelss : AsusMouse
|
|
{
|
|
public TUFM4Wirelss() : base(0x0B05, 0x19F4, "mi_00", true)
|
|
{
|
|
}
|
|
|
|
public TUFM4Wirelss(ushort productId) : base(0x0B05, productId, "mi_00", true)
|
|
{
|
|
}
|
|
|
|
public override int DPIProfileCount()
|
|
{
|
|
return 4;
|
|
}
|
|
|
|
public override string GetDisplayName()
|
|
{
|
|
return "TUF GAMING M4 (Wireless)";
|
|
}
|
|
|
|
|
|
public override PollingRate[] SupportedPollingrates()
|
|
{
|
|
return new PollingRate[] {
|
|
PollingRate.PR125Hz,
|
|
PollingRate.PR250Hz,
|
|
PollingRate.PR500Hz,
|
|
PollingRate.PR1000Hz
|
|
};
|
|
}
|
|
|
|
public override int ProfileCount()
|
|
{
|
|
return 3;
|
|
}
|
|
public override int MaxDPI()
|
|
{
|
|
return 12_000;
|
|
}
|
|
|
|
public override bool HasLiftOffSetting()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public override bool HasDebounceSetting()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override bool HasAutoPowerOff()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override bool HasAngleSnapping()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override bool HasAngleTuning()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public override bool HasLowBatteryWarning()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override bool HasDPIColors()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public override int DPIIncrements()
|
|
{
|
|
return 100;
|
|
}
|
|
|
|
public override bool CanChangeDPIProfile()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
//P310
|
|
public class TUFM4WirelssCN : TUFM4Wirelss
|
|
{
|
|
public TUFM4WirelssCN() : base(0x1A8D)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
public override string GetDisplayName()
|
|
{
|
|
return "TX GAMING MOUSE (Wireless)";
|
|
}
|
|
}
|
|
}
|