From a53701139d6e2555544ce5c7edea7ea1335d41c0 Mon Sep 17 00:00:00 2001 From: Joe Tretter Date: Sun, 26 Jun 2022 13:09:31 -0500 Subject: [PATCH] Give this device it's own MQTT topic --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index f6dc922..9da4c52 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -51,7 +51,7 @@ void reconnect() { // Attempt to connect if (client.connect(clientId.c_str())) { Serial.println("MQTT connected"); - client.subscribe("Address/Livorno/Garagedoor",1); + client.subscribe("Address/Livorno/GaragedoorIndicator",1); } else { Serial.print("MQTT failed, rc="); Serial.print(client.state());