Change broker's IP address

This commit is contained in:
Tanner Collin 2022-11-14 02:11:43 +00:00
parent 7d5d68e29c
commit 1e87df0b7a

View File

@ -84,7 +84,7 @@ async def process_mqtt(message):
async def fetch_mqtt():
await asyncio.sleep(3)
async with Client('192.168.0.100') as client:
async with Client('192.168.0.106') as client:
async with client.filtered_messages('iot/cameras') as messages:
await client.subscribe('#')
async for message in messages: