So, presumably you have used the thermal_zone2 element and set your sensor as : -
- platform: command_line
name: CPU Temperature
command: "cat /sys/class/thermal/thermal_zone2/temp"
unit_of_measurement: "°C"
scan_interval: 240
value_template: '{{ value | multiply(0.001) | round(1) }}'
For Centigrade.
Or for Farenheit, follow Mark’s example above
It seems, from obesrvation (please correct me if I’m wrong, but the posts I’ve read seem to agree) that Pi’s use zone 0 and Intel’s use zone 2 ???
I’ve also noticed that : -
The link describes the product as “Intel NUC form factor”. Is it truly a clone of an Intel NUC in all aspects? The fact you don’t see thermal_zone, whereas other Intel NUC owners do, suggests there are subtle differences.
I am running HassOS in a VirtualBox VM on an Intel NUC running Windows 10 Pro and the sensors don’t exist. I only see cooling_zone0 and cooling_zone1 directories with no data files representing any kind of temperature. The NUC CPU is actively cooled. It has a fan.
I use Open Hardware Monitor to monitor my windows server disks, temperatures, fan speed, CPU, memory etc in Home Assistant and it works really well. I used to use the Pulseway service but never use it at all anymore.
Is there an easy or straightforward way to get OpenHardwareMonitor to display it’s sensor temperatures in Celsius, despite my HA global settings being Fahrenheit? Thanks in advance!