我有以下代码:
import os
import time
def temp_core():
temp = os.popen("vcgencmd measure_temp").readline()
return(temp.replace("temp=",""))
while(True):
Temp = temp_core()
if Temp > 70:
print("Horny!")
time.sleep(5)
我需要在后台的树莓派pi3(debian)上运行此脚本(python3)(例如Daemon o Service),以便让我知道我的内核何时起火!