For a programming project I would like to access the temperature readings from my CPU and GPUs. I will be using C#. From various forums I get the impression that there is specific information and developer resources you need in order to access that information for various boards. I have a MSI NF750-G55 board. MSI's website does not have any of the information I am looking for. I tried their tech support and the rep I spoke with stated they do not have any such information. There must be a way to obtain that info.

Any thoughts?

link|improve this question

1  
There is a decent sample project at geekswithblogs.net/cicorias/archive/2006/11/22/97855.aspx that might help you get started. Direct link to the zip file containing the solution and all sources: cicoria.com/downloads/TemperatureMonitor/TempMonitorSrc.zip – Chris Shouts May 27 '10 at 19:11
feedback

1 Answer

up vote 10 down vote accepted

For at least the CPU side of things, you could use WMI.

The namespace\object is root\WMI, MSAcpi_ThermalZoneTemperature

Sample Code:

ManagementObjectSearcher searcher = 
    new ManagementObjectSearcher("root\\WMI",
                                 "SELECT * FROM MSAcpi_ThermalZoneTemperature");

ManagementObjectCollection.ManagementObjectEnumerator enumerator = 
    searcher.Get().GetEnumerator();

while(enumerator.MoveNext())
{
    ManagementBaseObject tempObject = enumerator.Current;
    Console.WriteLine(tempObject["CurrentTemperature"].ToString());
}

That will give you the temperature in a raw format. You have to convert from there:

kelvin = raw / 10;

celsius = (raw / 10) - 273.15;

farenheight = ((raw / 10) - 273.15) * 9 / 5 + 32;
link|improve this answer
I await with baited breath. – Paul May 27 '10 at 19:11
@Paul - Hopefully it doesn't disappoint. – Justin Niessner May 27 '10 at 19:26
I receive this error: 'enumerator.Current' threw an exception of type 'System.InvalidOperationException' – Aaron May 27 '10 at 19:30
@Aaron - Interesting. I wonder if your motherboard manufacturer supports this WMI monitoring (not all support it). – Justin Niessner May 27 '10 at 19:33
@Paul - Did this code work for you? – Aaron May 27 '10 at 20:14
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.