Skip to content

Instantly share code, notes, and snippets.

@lolocoo
Created May 31, 2016 02:39
Show Gist options
  • Select an option

  • Save lolocoo/f7d7c07a26da2c689264f45b09b0f808 to your computer and use it in GitHub Desktop.

Select an option

Save lolocoo/f7d7c07a26da2c689264f45b09b0f808 to your computer and use it in GitHub Desktop.
import commands
def get_cpu_temp():
tempFile = open( "/sys/class/thermal/thermal_zone0/temp" )
cpu_temp = tempFile.read()
tempFile.close()
return float(cpu_temp)/1000
# Uncomment the next line if you want the temp in Fahrenheit
#return float(1.8*cpu_temp)+32
def get_gpu_temp():
gpu_temp = commands.getoutput( '/opt/vc/bin/vcgencmd measure_temp' ).replace( 'temp=', '' ).replace( '\'C', '' )
return float(gpu_temp)
# Uncomment the next line if you want the temp in Fahrenheit
# return float(1.8* gpu_temp)+32
def main():
print "CPU temp: ", str(get_cpu_temp()), "C"
print "GPU temp: ", str(get_gpu_temp()), "C"
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment