This commit is contained in:
Serge
2024-11-06 12:59:58 +01:00
parent 5570513eeb
commit f72e3a69dd
6 changed files with 27 additions and 23 deletions

View File

@@ -361,6 +361,11 @@ namespace GHelper.USB
AsusHid.WriteInput(new byte[] { AsusHid.INPUT_ID, 0xD1, 0x09, 0x01, power }, "Aura");
}
public static void ApplyPowerOff()
{
AsusHid.Write(AuraPowerMessage(new AuraPower()));
}
public static void ApplyPower()
{

View File

@@ -52,6 +52,10 @@ namespace GHelper.USB
Write(new byte[] { 0x5e, 0xc5, status ? (byte)0x50 : (byte)0 });
}
public static void InitLight()
{
if (Program.acpi.IsXGConnected()) Light(AppConfig.Is("xmg_light"));
}
public static void Reset()
{