Skip to content

Commit

Permalink
White only keyboard detection for GA503R #1714
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Dec 9, 2023
1 parent d439d20 commit 3820809
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/USB/Aura.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ static Aura()
var device = AsusHid.FindDevices(AsusHid.AURA_ID).FirstOrDefault();
if (device is null) return;
Logger.WriteLine($"USB Version: {device.ReleaseNumberBcd} {device.ReleaseNumber}");

if (device.ReleaseNumberBcd >= 22 && device.ReleaseNumberBcd <= 25) isSingleColor = true;
if (AppConfig.ContainsModel("GA503R") && device.ReleaseNumberBcd == 3) isSingleColor = true;
}
}

Expand Down

0 comments on commit 3820809

Please sign in to comment.