Compare commits

..

4 Commits

Author SHA1 Message Date
seerge
1c23f8aad4 Merge branch 'main' of https://github.com/seerge/g14-helper 2023-02-25 13:24:34 +01:00
seerge
28aeeb7d57 Fixed GPU fan sensor 2023-02-25 13:24:31 +01:00
seerge
202cb84d12 Update README.md 2023-02-25 12:01:01 +01:00
seerge
0b4da0a66a Update README.md 2023-02-25 01:52:32 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,8 @@ Designed and developer for Asus Zephyrus G14 2022 (with AMD Radeon iGPU and dGPU
To keep autoswitching and hotkeys work app needs to stay in running in tray. It doesn't consume any resources.
I also recommend to keep "Asus Optimization Service" running , as it keeps basic laptop hotkeys such as screen or keyboard brightness adjustment working. If you have (or had) MyASUS app installed, that service is most probably still up an running even after MyASUS uninstall.
### [Download latest release](https://github.com/seerge/g-helper/releases)
![Screenshot](https://github.com/seerge/g-helper/blob/main/screenshot.png)

View File

@@ -335,9 +335,10 @@ namespace GHelper
private static void RefreshSensors()
{
string cpuFan = " Fan: " + Math.Round(Program.wmi.DeviceGet(ASUSWmi.CPU_Fan) / 0.6).ToString() + "%";
string gpuFan = " Fan: " + Math.Round(Program.wmi.DeviceGet(ASUSWmi.GPU_Fan) / 0.6) + "%";
string gpuFan = " Fan: " + Math.Round(Program.wmi.DeviceGet(ASUSWmi.GPU_Fan) / 0.6).ToString() + "%";
string cpuTemp = "";
string gpuTemp = "";
string battery = "";
HardwareMonitor.ReadSensors();
@@ -351,6 +352,7 @@ namespace GHelper
Program.settingsForm.BeginInvoke(delegate
{
Program.settingsForm.labelCPUFan.Text = "CPU" + cpuTemp + cpuFan;
Program.settingsForm.labelGPUFan.Text = "GPU" + gpuTemp + gpuFan;
Program.settingsForm.labelBattery.Text = battery;
});
}