This page (revision-2) was last changed on 2021-05-07 08:50 by Murray Altheim

This page was created on 2020-05-10 04:34 by Murray Altheim

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
2 2021-05-07 08:50 668 bytes Murray Altheim to previous
1 2020-05-10 04:34 274 bytes Murray Altheim to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 12 added one line
The vcgencmd command merely reads the value of a single line in a file written by the [Raspberry Pi OS], a file located at:
At line 14 added 10 lines
{{{
/sys/class/thermal/thermal_zone0/temp
}}}
Divide the value found there by 1000 to get the ARM CPU temperature in more human readable format. Here's the bash script to do that:
{{{
cpu=$(</sys/class/thermal/thermal_zone0/temp)
echo "$((cpu/1000)) c"
}}}