How to read/detect the temperature of BeaglePlay`s MCU?

Hello Experts,
How do we detect or read the temperature of BeaglePlay`s MCU? :roll_eyes:

See if they are exposed in

$ /sys/class/hwmon/

And read with some python script.

Or

$sudo apt install psensor

Use that from gui.

FYI, I don’t have a playboard powered up so this is not verified.

lmsensor does not have valid ARM build. It only work very well under x86.

However, I have found these data in Beagleplay directories.
/sys/class/thermal/thermal_zone0/temp
39683
/sys/class/thermal/thermal_zone1/temp
39216

It seems close to it current working temperature 39.5C :wink:

Simply enter:
cat /sys/class/thermal/thermal_zone0/temp
cat /sys/class/thermal/thermal_zone1/temp

and they will show degree centigrade in mC.