mirror of
https://github.com/anatolykopyl/Twitter-Bot.git
synced 2026-03-26 12:54:49 +00:00
8 lines
182 B
Python
8 lines
182 B
Python
|
|
def check_temp(): #return temp. yours Rpi
|
|
cmd = '/opt/vc/bin/vcgencmd measure_temp'
|
|
line = os.popen(cmd).readline().strip()
|
|
temp = line.split('=')[1].split("'")[0]
|
|
return temp
|
|
|