Timelapse_Camera_Firmware/Software/Temperatur/TempRead.txt

11 lines
205 B
Plaintext
Raw Permalink Normal View History

2021-09-04 23:20:35 +02:00
vcgencmd measure_temp
import os
def getCpuTemperature():
tempFile = open( "/sys/class/thermal/thermal_zone0/temp" )
cpu_temp = tempFile.read()
tempFile.close()
return float(cpu_temp)/1000