我不知道如何让python每天重启我的树莓派。我没有代码可以显示我的尝试。我敢肯定,有人可以告诉我怎么做。
答案 0 :(得分:0)
def getEvents(self):
ins, outs, ex = select.select([self.s], [], [], 0)
for inm in ins:
events = pickle.loads(inm.recv(self.BUFFERSIZE))
return events
def request(self, sth):
self.s.send(pickle.dumps(sth))
def disconnect(self):
self.s.close()
在您选择的操作系统上查看cron作业以定期执行此操作
Execute a daily reboot on a raspberry pi
转到shell,使用serv = server.Server()
import os
os.system("reboot")
在crontab文件中输入以下内容
sudo chmod +rwx /path/to/script.py