test
This commit is contained in:
parent
f80f71e3a2
commit
8c62d078cc
6
MQTT.py
6
MQTT.py
|
@ -8,7 +8,7 @@ from tool import push_stream, close_stream, update, exec_sh
|
||||||
class MQTT:
|
class MQTT:
|
||||||
def on_connect(self, client, userdata, flags, rc):
|
def on_connect(self, client, userdata, flags, rc):
|
||||||
if rc == 0:
|
if rc == 0:
|
||||||
client.subscribe('lot_stream')
|
client.subscribe('lot_mqtt')
|
||||||
|
|
||||||
# Message receiving callback
|
# Message receiving callback
|
||||||
def on_message(self, client, userdata, msg):
|
def on_message(self, client, userdata, msg):
|
||||||
|
@ -34,12 +34,12 @@ class MQTT:
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.client = mqtt.Client()
|
self.client = mqtt.Client()
|
||||||
self.client.username_pw_set("ceshi", "123456")
|
self.client.username_pw_set("demo", "123456")
|
||||||
# Specify callback function
|
# Specify callback function
|
||||||
self.client.on_connect = self.on_connect
|
self.client.on_connect = self.on_connect
|
||||||
self.client.on_message = self.on_message
|
self.client.on_message = self.on_message
|
||||||
# Establish a connection
|
# Establish a connection
|
||||||
self.client.connect('60.204.152.17', 1883)
|
self.client.connect('ceshi-mqtt.lihaink.cn', 1883)
|
||||||
# Publish a message
|
# Publish a message
|
||||||
self.client.loop_forever(retry_first_connection=True)
|
self.client.loop_forever(retry_first_connection=True)
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
75
ceshi.py
75
ceshi.py
|
@ -376,13 +376,43 @@ def run_no_client():
|
||||||
'wind_direction': winddirection_data}
|
'wind_direction': winddirection_data}
|
||||||
data = LOT_DATA(**data, create_time=int(time.time()))
|
data = LOT_DATA(**data, create_time=int(time.time()))
|
||||||
# TODO 判断数据是否正常
|
# TODO 判断数据是否正常
|
||||||
r = add(data)
|
add(data)
|
||||||
|
|
||||||
|
|
||||||
def t1():
|
class UPLOAD:
|
||||||
|
def __init__(self):
|
||||||
|
self.times = 3
|
||||||
|
self.client = mqtt.Client(transport="websockets")
|
||||||
|
self.client.username_pw_set("demo", "123456")
|
||||||
|
# Specify callback function
|
||||||
|
self.client.on_connect = self.on_connect
|
||||||
|
# Establish a connection
|
||||||
|
self.client.connect('ceshi-mqtt.lihaink.cn', 8083)
|
||||||
|
# Publish a message
|
||||||
|
self.client.loop_forever()
|
||||||
|
|
||||||
|
def on_connect(self, client, userdata, flags, rc):
|
||||||
|
from threading import Thread
|
||||||
|
if rc == 0:
|
||||||
|
print("连接成功,执行数据推送和本地存储")
|
||||||
|
nt1 = Thread(target=self.t1)
|
||||||
|
nt1.start()
|
||||||
|
else:
|
||||||
|
if self.times != 0:
|
||||||
|
self.times -= 1
|
||||||
|
client.reconnect()
|
||||||
|
else:
|
||||||
|
print("3次失败,执行本地存储")
|
||||||
|
nt2 = Thread(target=self.t2)
|
||||||
|
nt2.start()
|
||||||
|
|
||||||
|
def t2(self):
|
||||||
|
print("1")
|
||||||
|
|
||||||
|
def t1(self):
|
||||||
import time
|
import time
|
||||||
while (1):
|
while (1):
|
||||||
time.sleep(2)
|
time.sleep(60)
|
||||||
data = {
|
data = {
|
||||||
"wind_speed": 1,
|
"wind_speed": 1,
|
||||||
"wind_direction": 6,
|
"wind_direction": 6,
|
||||||
|
@ -401,41 +431,4 @@ def t1():
|
||||||
"soil_potassium_phosphate_potassium": 86,
|
"soil_potassium_phosphate_potassium": 86,
|
||||||
"create_time": int(time.time())
|
"create_time": int(time.time())
|
||||||
}
|
}
|
||||||
client.publish('lot_data', payload=json.dumps(data, ensure_ascii=False), qos=0)
|
self.client.publish('demo', payload=json.dumps(data, ensure_ascii=False), qos=0)
|
||||||
|
|
||||||
|
|
||||||
def t2():
|
|
||||||
print("1")
|
|
||||||
|
|
||||||
|
|
||||||
time = 3
|
|
||||||
|
|
||||||
from threading import Thread
|
|
||||||
|
|
||||||
|
|
||||||
def on_connect(client, userdata, flags, rc):
|
|
||||||
global time
|
|
||||||
if rc == 0:
|
|
||||||
print("连接成功,执行数据推送和本地存储")
|
|
||||||
nt1 = Thread(target=t1)
|
|
||||||
nt1.start()
|
|
||||||
else:
|
|
||||||
if time != 0:
|
|
||||||
time -= 1
|
|
||||||
client.reconnect()
|
|
||||||
else:
|
|
||||||
print("3次失败,执行本地存储")
|
|
||||||
nt2 = Thread(target=t2)
|
|
||||||
nt2.start()
|
|
||||||
|
|
||||||
|
|
||||||
client = mqtt.Client(transport="websockets")
|
|
||||||
client.username_pw_set("demo", "123456")
|
|
||||||
# Specify callback function
|
|
||||||
client.on_connect = on_connect
|
|
||||||
# Establish a connection
|
|
||||||
client.connect('ceshi-mqtt.lihaink.cn', 8083)
|
|
||||||
# Publish a message
|
|
||||||
client.loop_forever()
|
|
||||||
|
|
||||||
# Message receiving callback
|
|
||||||
|
|
Loading…
Reference in New Issue