- #!/usr/bin/python
- #/home/pi/samply_temp.py
- import os
- float_temp = float(os.popen('vcgencmd measure_temp').readline().replace("temp=","").replace("'C\n",""))
- text_temp = '{"value":%f}' %float_temp
- output = open('/home/pi/datafile.txt', 'w')
- output.write(text_temp)
- output.close
- print text_temp
复制代码 自己改了一个采集树莓派CPU温度的python(我没学过python,只学过C),加了可执行权限,直接手动执行没有问题,但是加入sudo crontab -e定时执行任务中执行就不行。- */1 * * * * /home/pi/samply_temp.py
复制代码 或者- */1 * * * * python /home/pi/samply_temp.py
复制代码 就是无法自动执行,很奇怪所以问一下大家
|