From 9ed53939a15060a4353b82fa0a9414db56fdbf5e Mon Sep 17 00:00:00 2001 From: Nils Grunwald Date: Sun, 6 Nov 2022 09:17:59 +0100 Subject: [PATCH] switched to new mqtt server --- web2mqtt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web2mqtt/__init__.py b/web2mqtt/__init__.py index 49fb97e..38238ad 100644 --- a/web2mqtt/__init__.py +++ b/web2mqtt/__init__.py @@ -4,5 +4,5 @@ app = Flask(__name__) # Create an instance of the class for our use import paho.mqtt.client as mqtt client = mqtt.Client("Web2Mqtt") -client.connect("192.168.178.76",1884,keepalive=60) +client.connect("192.168.178.36",1884,keepalive=60) client.publish("web2mqtt/status","Web2Mqtt starting up...") \ No newline at end of file