
it only needs OpenHardwareMonitorLib.dll to work, no need to OpenHardwareMonitor.exe running. Features: Open Hardware Monitor reads core temperature sensors of Intel and AMD processors for monitoring the CPU temperature.

It provides support to most of the hardware monitoring chips. The namespace they are published to is called root/OpenHardwareMonitor. Open Hardware Monitor can monitor Temperature sensors, Fan speed, Voltages, Load, and Clock speeds of the computer.

OPEN HARDWARE MONITOR .EXE
exe which shows 3 first fans speed at each launch. The Open Hardware Monitor publishes two distinct WMI classes, as detailed below. If (sensor.SensorType = SensorType.Fan & ("Fan #3", StringComparison.OrdinalIgnoreCase))Ĭonsole.WriteLine((string)sensor.Name + ": " + Convert.ToString((int)(float)sensor.Value)) Ĭompiled in VS, it outputs an. If(sensor.SensorType = SensorType.Fan & ("Fan #2", StringComparison.OrdinalIgnoreCase)) If(sensor.SensorType = SensorType.Fan & ("Fan #1", StringComparison.OrdinalIgnoreCase))Ĭonsole.WriteLine((string) sensor.Name + ": " + Convert.ToString((int) (float) sensor.Value)) is it possible for a C ++ guru to adapt this code for a Rainmeter plugin ?įoreach(var hardware in thisComputer.Hardware)įoreach(var subhardware in hardware.SubHardware)įoreach(var sensor in subhardware.Sensors) The Open Hardware Monitor is equipped to handle the majority of hardware monitoring chips available on todays motherboards. If (sensor.SensorType = SensorType.Temperature)Ĭonsole.WriteLine("", sensor.Name, sensor.Hardware, sensor.SensorType, sensor.Value) ĭo not like doing that, but my knowledge of C ++ are more than light. Protected virtual void ActivateSensor(ISensor sensor)įoreach (var hardwareItem in m圜omputer.Hardware)Ĭonsole.WriteLine(hardwareItem.GetReport()) įoreach (var sensor in hardwareItem.Sensors)
OPEN HARDWARE MONITOR SOFTWARE
Public event SensorEventHandler SensorRemoved Open Hardware Monitor is open-source software that monitors the fan speeds, load, clock speeds, voltages, and temperature sensors of a computer. Open Hardware Monitor is a free open-source utility that is designed to provide a centralized interface in which you can easily monitor various aspects of. Our crowd-sourced lists contains more than 50 apps. Public event SensorEventHandler SensorAdded The best Open Hardware Monitor alternatives are HWiNFO (32/64), Sidebar Diagnostics and MSI Afterburner. Sample code: import wmi w wmi.WMI (namespace'rootOpenHardwareMonitor') temperatureinfos w.Sensor () for sensor in temperatureinfos: if sensor.SensorTypeuTemperature: print (sensor.

Protected readonly ListSet active = new ListSet() Use the WMI module + Open Hardware Monitor + its WMI interface described here.
