Reading CPU Temperature of Raspberry Pi in file
/sys/class/thermal/thermal_zone0/temp
this file show in milli celsius (m˚C) unit, divide 1000 convert to ˚C
for example
44388 ÷ 1000 = 44.388 ˚C
Script for caculate in celsius unit
#!/bin/bash
temp=`cat /sys/class/thermal/thermal_zone0/temp`
real_temp=`bc...