Support for ASUS TuF M3 Gen II (#1762)

* Added support for ROG Chakram Core (P511)

* Add support for the TUF M3 Gen II
This commit is contained in:
IceStormNG
2023-12-19 12:29:12 +01:00
committed by GitHub
parent 62f280b0b9
commit e7ceb2feaf
2 changed files with 17 additions and 0 deletions

View File

@@ -7,6 +7,10 @@
{
}
public TUFM3(ushort productId, string path) : base(0x0B05, productId, path, false)
{
}
public override int DPIProfileCount()
{
return 4;
@@ -109,4 +113,16 @@
|| lightingMode == LightingMode.React;
}
}
public class TUFM3GenII : TUFM3
{
public TUFM3GenII() : base(0x1A9B, "mi_02")
{
}
public override string GetDisplayName()
{
return "TUF GAMING M3 (Gen II)";
}
}
}

View File

@@ -200,6 +200,7 @@ namespace GHelper.Peripherals
DetectMouse(new HarpeAceAimLabEditionWired());
DetectMouse(new HarpeAceAimLabEditionOmni());
DetectMouse(new TUFM3());
DetectMouse(new TUFM3GenII());
DetectMouse(new TUFM5());
DetectMouse(new KerisWirelssAimpoint());
DetectMouse(new KerisWirelssAimpointWired());