dimalo/klipper-web-control-docker

Wrong CPU temp on Intel NUC

Andoramb opened this issue · 2 comments

Hi,
I'm running this on an Intel NUC and I observed that the CPU temp readings give erroneous data, in klipper-fluidd:

The reason was the one I mentioned here:
As Klipper was made for the PI, if it runs on a different architecture the temp sensor readings may differ.

On a NUC for ex. /sys/class/thermal/thermal_zone0/temp will be an invalid temp, but
/sys/class/thermal/thermal_zone1/temp will be ok.

A quick solution was to map/change the path in the compose.yaml:

    volumes:
      - '/sys/class/thermal/thermal_zone1/temp:/sys/class/thermal/thermal_zone0/temp'

not sure how I can help here...
https://www.klipper3d.org/Config_Reference.html#host-temperature-sensor
If you want you can reconfigure the path. If you mean the Host Temperature shown in Fluidd together with memory/disk/mcu stats, then this is a moonraker issue.
But glad you found a workaround, docker to the rescue 👯

Oh great!
I didn't know that. Just wanted to point out if someone will search for this :)
This repo is so cool by the way!
Thanks :)