From 0234131aa3794d4f14821c7797371bc2fbf5a98e Mon Sep 17 00:00:00 2001 From: James Pace Date: Sat, 2 Apr 2022 00:09:43 +0000 Subject: [PATCH] Should test locally first... --- examples/python-device-client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python-device-client.py b/examples/python-device-client.py index 37cdcc9..4b11ab8 100644 --- a/examples/python-device-client.py +++ b/examples/python-device-client.py @@ -34,7 +34,7 @@ client = paho.mqtt.client.Client(protocol=paho.mqtt.client.MQTTv5, transport="websockets") client.username_pw_set("jimmy", password=token) client.tls_set() -client.connect("mqtt.jpace121.net", port=443) +client.connect("localhost", port=8082) print("Waiting on connection.") time.sleep(20)