Reputation: 611
Is there a way to get the CPU temperature from a Raspberry Pi with Windows 10 IoT Core, much like you can get running "vcgencmd measure_temp" in Raspbian? Unfortunately Windows Dashboard App Manager "SystemPerformance.htm" only shows CPU performance and PowerShell for Windows IOT Core does not include the "Get-WmiObject" Cmdlet to have run the script on this page: https://gist.github.com/jeffa00/9577816. Are there other alternatives? :(
Upvotes: 3
Views: 2414
Reputation: 333
Maybe you can try Open Hardware Monitor Report it's an open source software. Get CPU temperature in CMD/POWER Shell
Upvotes: 1
Reputation: 10044
I believe WMI cmdlets are not there but CIM cmdlets are. I am also unsure if the WMI class you need is there. But using the CIM cmdlet would look something like this:
$t = Get-CimInstance MSAcpi_ThermalZoneTemperature -Namespace "root/wmi"
Upvotes: 0