瀏覽代碼

retain published messages

Karl Hudgell 6 月之前
父節點
當前提交
c23dafc732
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lib/mqtt.py

+ 2 - 2
lib/mqtt.py

@@ -77,7 +77,7 @@ def update_disc(client:mqtt, disc_message:dict)->None:
         client (mqtt): MQTT Client
         disc_message (dict): Current disc information
     """
-    client.publish("homeassistant/sensor/floppy_player/current_disc/state", json.dumps(disc_message))
+    client.publish("homeassistant/sensor/floppy_player/current_disc/state", json.dumps(disc_message), retain=True)
     print(f"Published current disc: {disc_message}")
 
 
@@ -88,6 +88,6 @@ def control_player(client:mqtt, state:str)->None:
         client (mqtt): MQTT Client
         state (str): Player State
     """    
-    client.publish("homeassistant/sensor/floppy_player/status/state", state)
+    client.publish("homeassistant/sensor/floppy_player/status/state", state, retain=True)
     print(f"Published status: {state}")