From 56134c2d7096c0d83326258bf95ee8b3ffab1b8e Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 30 Dec 2025 19:40:09 +0000 Subject: [PATCH] fix: Narrow MQTT subscription topic --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 2429b4c..12504fc 100644 --- a/main.py +++ b/main.py @@ -38,7 +38,7 @@ async def fetch_mqtt(): hostname='10.55.0.106', port=1883, ) as client: - await client.subscribe('#') + await client.subscribe('iot/12ser/#') async for message in client.messages: loop = asyncio.get_event_loop() loop.create_task(process_mqtt(message))