Aura Tweaks

This commit is contained in:
Serge
2023-12-26 15:10:36 +01:00
parent 165f5e4829
commit d7a8d51375
3 changed files with 7 additions and 21 deletions

View File

@@ -13,7 +13,6 @@ public static class AsusHid
static int[] deviceIds = { 0x1a30, 0x1854, 0x1869, 0x1866, 0x19b6, 0x1822, 0x1837, 0x1854, 0x184a, 0x183d, 0x8502, 0x1807, 0x17e0, 0x18c6, 0x1abe };
static HidStream? auraStream;
static int featureLength;
public static IEnumerable<HidDevice>? FindDevices(byte reportId)
{
@@ -95,10 +94,7 @@ public static class AsusHid
foreach (var data in dataList)
try
{
var payload = new byte[device.GetMaxFeatureReportLength()];
Array.Copy(data, payload, data.Length);
stream.SetFeature(payload);
//stream.Write(data);
stream.Write(data);
Logger.WriteLine($"{log} {device.ProductID.ToString("X")}: {BitConverter.ToString(data)}");
}
catch (Exception ex)
@@ -111,20 +107,12 @@ public static class AsusHid
public static void WriteAura(byte[] data)
{
if (auraStream == null)
{
auraStream = FindHidStream(AURA_ID);
if (auraStream == null) return;
featureLength = auraStream.Device.GetMaxFeatureReportLength();
}
if (auraStream == null) auraStream = FindHidStream(AURA_ID);
if (auraStream == null) return;
try
{
var payload = new byte[featureLength];
Array.Copy(data, payload, data.Length);
auraStream.SetFeature(payload);
//auraStream.Write(data);
auraStream.Write(data);
}
catch (Exception ex)
{