gpt4 book ai didi

raspberry-pi - 重启树莓派的 Python 脚本

转载 作者:行者123 更新时间:2023-11-30 23:58:53 25 4
gpt4 key购买 nike

我想我想要的是直截了当的。

在 23 小时 59 分钟后重新启动我的 Raspberry Pi 的 Python 脚本。我尝试这样做的原因,而不是使用 cron 作业设置时间,是 Pi 没有用于时钟的板载电池,所以我不在乎时间是什么(如果连接到互联网,它将获取当前时间) ,从脚本开始倒计时 23 小时 59 分钟。

这是我所能得到的;

def restart():
SendEmail = SendEmail "SYSTEM RESTART", "ncam.py auto restart initiated" msg['Subject'], body)
command = "/usr/bin/sudo /sbin/shutdown -r now"
process = subprocess.Popen(command.split(), stdout=subprocess.PIPE)
output = process.communicate()[0]

我也想用上面的设置参数给自己发送一封电子邮件。

最佳答案

你会想要一些这样的变体:

 import time
import os
currentTime = time.time()
tomorrow = currentTime + 86340000
while time.time() < tomorrow:
do.yourCode()

os.system("poweroff")
把类似的东西放在你的函数中,它会做你想做的。

关于raspberry-pi - 重启树莓派的 Python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18560331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com