Add CPU temp file for Raspberry Pi/linux

This commit is contained in:
Satadru Pramanik 2021-11-18 12:01:21 -05:00 committed by GitHub
parent 24b1281f9a
commit d561057cd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2219,6 +2219,10 @@ get_cpu() {
break
}
done
# If on a Raspberry Pi...
if grep -q "Raspberry Pi" /proc/device-tree/model; then
temp_dir=/sys/class/thermal/thermal_zone0/temp
fi
# Get CPU speed.
if [[ -d "$speed_dir" ]]; then