Skip to content

Instantly share code, notes, and snippets.

@rt1d6m7
Forked from kevalpatel2106/monitor-temp.py
Created June 10, 2020 03:46
Show Gist options
  • Select an option

  • Save rt1d6m7/e10b8bd4ffeeae5c51e0fb90f73b555a to your computer and use it in GitHub Desktop.

Select an option

Save rt1d6m7/e10b8bd4ffeeae5c51e0fb90f73b555a 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