对于编程项目,我想访问CPU和GPU的温度读数。我将使用C#。在各种论坛中,我得到的印象是,您需要特定的信息和开发人员资源才能访问各种板卡的信息。我有一个MSI NF750-G55板。 MSI的网站没有我要查找的任何信息。我尝试了他们的技术支持,我采访的代表说他们没有任何此类信息。必须有办法获得该信息。
有什么想法吗?
答案 0 :(得分:20)
至少在CPU方面,您可以使用WMI。
名称空间\对象是root\WMI, MSAcpi_ThermalZoneTemperature
示例代码:
ManagementObjectSearcher searcher =
new ManagementObjectSearcher("root\\WMI",
"SELECT * FROM MSAcpi_ThermalZoneTemperature");
ManagementObjectCollection collection =
searcher.Get();
foreach(ManagementBaseObject tempObject in collection)
{
Console.WriteLine(tempObject["CurrentTemperature"].ToString());
}
这将以原始格式提供温度。你必须从那里转换:
kelvin = raw / 10;
celsius = (raw / 10) - 273.15;
fahrenheit = ((raw / 10) - 273.15) * 9 / 5 + 32;
答案 1 :(得分:1)
实际上使用WMI进行任何硬件相关编码的最佳方法最好通过Microsoft使用此WMI代码创建工具来完成,该工具将根据您要查找的内容为您创建代码以及你想要使用的.Net语言。
目前支持的语言是:C#,Visual Basic,VB Script。
答案 2 :(得分:0)
请注意,MSAcpi_ThermalZoneTemperature
不会给您CPU的温度,而是给您主板的温度。另外,请注意,大多数主板都不通过WMI来实现。
尽管它不支持最新的处理器,但您可以试用开放式硬件监视器。
internal sealed class CpuTemperatureReader : IDisposable
{
private readonly Computer _computer;
public CpuTemperatureReader()
{
_computer = new Computer { CPUEnabled = true };
_computer.Open();
}
public IReadOnlyDictionary<string, float> GetTemperaturesInCelsius()
{
var coreAndTemperature = new Dictionary<string, float>();
foreach (var hardware in _computer.Hardware)
{
hardware.Update(); //use hardware.Name to get CPU model
foreach (var sensor in hardware.Sensors)
{
if (sensor.SensorType == SensorType.Temperature && sensor.Value.HasValue)
coreAndTemperature.Add(sensor.Name, sensor.Value.Value);
}
}
return coreAndTemperature;
}
public void Dispose()
{
try
{
_computer.Close();
}
catch (Exception)
{
//ignore closing errors
}
}
}
从official source下载zip,提取并在项目中添加对OpenHardwareMonitorLib.dll的引用。