fix mqtt host

This commit is contained in:
Franzi 2024-07-30 17:56:09 +02:00
parent 7c1ea8b2a7
commit 4d1850e996
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ from rich.live import Live
from rich.panel import Panel from rich.panel import Panel
from rich.table import Table from rich.table import Table
MQTT_HOST = "nas.home.kunbox.net" MQTT_HOST = "127.0.0.1"
MQTT_SUB = "sdm630/" MQTT_SUB = "sdm630/"
TITLE = "SDM630" TITLE = "SDM630"
TABLE_LAYOUT = { TABLE_LAYOUT = {

View file

@ -122,7 +122,7 @@ class SDM630_MQTT:
if __name__ == "__main__": if __name__ == "__main__":
client = SDM630_MQTT( client = SDM630_MQTT(
"192.168.1.254", "192.168.1.254",
"nas.home.kunbox.net", "127.0.0.1",
) )
client.start() client.start()
try: try: