feat: added GPU temperature indication. Supports both NVIDIA and AMD discrete GPUs

feat: immediately update sensors when opening GHelper window
This commit is contained in:
Serhii Yolkin
2023-03-13 17:35:35 +01:00
parent a39c084bdf
commit 62ac478761
7 changed files with 674 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace GHelper.Gpu;
public interface IGpuTemperatureProvider : IDisposable {
bool IsValid { get; }
int? GetCurrentTemperature();
}