diff --git a/ceshi.py b/ceshi.py index 40368d1..c9ae694 100644 --- a/ceshi.py +++ b/ceshi.py @@ -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 diff --git a/test.py b/create_db.py similarity index 100% rename from test.py rename to create_db.py