t
This commit is contained in:
parent
f7930dc31d
commit
d425cc84f3
@ -16,41 +16,51 @@ from paho.mqtt import client as mqtt_client
|
|||||||
|
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
|
||||||
broker = 'homeassistant'
|
Connected = False
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def connect_mqtt() -> mqtt_client:
|
||||||
|
def on_connect(client, userdata, flags, rc):
|
||||||
|
if rc == 0:
|
||||||
|
print("Connected to MQTT Broker!")
|
||||||
|
|
||||||
|
global Connected #Use global variable
|
||||||
|
Connected = True #Signal connection
|
||||||
|
else:
|
||||||
|
print("Failed to connect, return code %d\n", rc)
|
||||||
|
|
||||||
|
def on_message(client, userdata, msg):
|
||||||
|
print(f"Received `{msg.payload.decode()}` from `{msg.topic}` topic")
|
||||||
|
|
||||||
|
Connected = False #global variable for the state of the connection
|
||||||
|
|
||||||
|
broker = "homeassistant"
|
||||||
port = 8883
|
port = 8883
|
||||||
topic = "openWB/evu/W"
|
topic = "openWB/evu/W"
|
||||||
username = "mqtt-user"
|
username = "mqtt-user"
|
||||||
password = "phio6yiR9ohs1veeghu4WaeGhaiRi8he4EiWasheev4faeku8tohdiuthah7zahP"
|
password = "phio6yiR9ohs1veeghu4WaeGhaiRi8he4EiWasheev4faeku8tohdiuthah7zahP"
|
||||||
client_id = "solarmonitor"
|
client_id = "solarmonitor"
|
||||||
|
|
||||||
def connect_mqtt() -> mqtt_client:
|
client = mqtt_client.Client(client_id)
|
||||||
def on_connect(client, userdata, flags, rc):
|
client.username_pw_set(username, password)
|
||||||
if rc == 0:
|
client.on_connect = on_connect
|
||||||
print("Connected to MQTT Broker!")
|
client.on_message = on_message
|
||||||
else:
|
|
||||||
print("Failed to connect, return code %d\n", rc)
|
|
||||||
|
|
||||||
client = mqtt_client.Client(client_id)
|
client.connect(broker, port)
|
||||||
client.username_pw_set(username, password)
|
|
||||||
client.on_connect = on_connect
|
|
||||||
client.connect(broker, port)
|
|
||||||
return client
|
|
||||||
|
|
||||||
def subscribe(client: mqtt_client):
|
client.loop_start() #start the loop
|
||||||
def on_message(client, userdata, msg):
|
|
||||||
print(f"Received `{msg.payload.decode()}` from `{msg.topic}` topic")
|
while Connected != True: #Wait for connection
|
||||||
|
time.sleep(0.1)
|
||||||
|
|
||||||
client.subscribe(topic)
|
client.subscribe(topic)
|
||||||
client.on_message = on_message
|
|
||||||
|
|
||||||
|
try:
|
||||||
def run():
|
while True:
|
||||||
print("test")
|
time.sleep(1)
|
||||||
client = connect_mqtt()
|
|
||||||
print("conected")
|
except KeyboardInterrupt:
|
||||||
subscribe(client)
|
print "exiting"
|
||||||
client.loop_forever()
|
client.disconnect()
|
||||||
|
client.loop_stop()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
run()
|
|
||||||
|
Loading…
Reference in New Issue
Block a user