Browse Source

retain published messages

Karl Hudgell 6 months ago
parent
commit
c23dafc732
1 changed files with 2 additions and 2 deletions
  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}")