How To: Read LM Sensors (CPU Temp) on 752-9800 i7 Edge Computer

These steps will allow the CPU tempurature sensor to be displayed via a command line tool.

  1. SSH into the controller (root/wago)
  2. type:

apt-get update
image

3.type:

apt-get install lm-sensors
image

  1. type:

sensors-detect
image

Then type YES to add the Intel thermal sensor. Click no on the other questions until the end where it asks to add to the /etc/modules file, then type YES.

  1. To see the current temperature, simply type:

sensors
image

or to monitor continuously type:

watch sensors
image

1 Like

Is there a way to install the lm-sensors package on a PFC200 Controller?
Or to be more specific: How can we get the CPU temperature and system supply voltage from a PFC200?

It’s not available in PFC, only TP & EDGE Ctrl:


thermal_zone directories direct us to thermometers placed on the board.

You can read them easy without any external program:
cat /sys/class/thermal/thermal_zone0/temp
EDGE Computer:
cat /sys/class/thermal/thermal_zone0/temp
cat /sys/class/thermal/thermal_zone1/temp

2 Likes