Skip to content

Instantly share code, notes, and snippets.

@kevalpatel2106
Created July 3, 2017 04:11
Show Gist options
  • Save kevalpatel2106/ac79e08e6362e246e757895d0e9aa1f6 to your computer and use it in GitHub Desktop.
Save kevalpatel2106/ac79e08e6362e246e757895d0e9aa1f6 to your computer and use it in GitHub Desktop.
import os
import time
def measure_temp():
temp = os.popen("vcgencmd measure_temp").readline()
return (temp.replace("temp=",""))
while True:
print(measure_temp())
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment