This commit is contained in:
xyj 2023-12-05 18:37:24 +08:00
parent 28a86212f2
commit d034547fac
2 changed files with 3 additions and 3 deletions

View File

@ -15,13 +15,13 @@ import paho.mqtt.client as mqtt
def on_connect(client, userdata, flags, rc):
global times
if rc == 0:
print("连接成功,执行数据推送和本地存储")
# print("连接成功,执行数据推送和本地存储")
subprocess.Popen(['/usr/bin/bash start_data_upload.sh'], shell=True)
times = 3
def on_connect_fail(client, userdata):
print("失败,执行本地存储")
# print("失败,执行本地存储")
subprocess.Popen(['/usr/bin/bash stop_data_upload.sh'], shell=True)
@ -39,7 +39,7 @@ if __name__ == '__main__':
# Publish a message
client.loop_forever()
except Exception as e:
print("等待5秒重新连接客户端")
# print("等待5秒重新连接客户端")
time.sleep(5)
if times != 0:
times -= 1