fix mqtt host
This commit is contained in:
parent
7c1ea8b2a7
commit
4d1850e996
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ from rich.live import Live
|
|||
from rich.panel import Panel
|
||||
from rich.table import Table
|
||||
|
||||
MQTT_HOST = "nas.home.kunbox.net"
|
||||
MQTT_HOST = "127.0.0.1"
|
||||
MQTT_SUB = "sdm630/"
|
||||
TITLE = "SDM630"
|
||||
TABLE_LAYOUT = {
|
||||
|
|
|
@ -122,7 +122,7 @@ class SDM630_MQTT:
|
|||
if __name__ == "__main__":
|
||||
client = SDM630_MQTT(
|
||||
"192.168.1.254",
|
||||
"nas.home.kunbox.net",
|
||||
"127.0.0.1",
|
||||
)
|
||||
client.start()
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue