Raspberrypi CPU temperature monitor

Check cpu temperature

cat /sys/class/thermal/thermal_zone0/temp

Check cpu temperature automation

#!/bin/bash

while :
do
        cat /sys/class/thermal/thermal_zone0/temp
        sleep 1
done
 vi cpu_tem.sh
chmod +x cpu_tem.sh
./cpu_tem.sh

Leave a Reply

Your email address will not be published.

ANOTE.DEV