added how to get the temperature of the rpi3
[www.git] / src / tricks / raspberry_pi3_temperature.adoc
1 = Raspberry PI - How to get the temperature
2 :docinfo2:
3 :icons: font
4
5 Display the temperature of the Raspberry (Celsius):
6 ----
7 echo `cat /sys/class/thermal/thermal_zone0/temp` / 1000 |bc
8 ----