|
@@ -1,6 +1,7 @@
|
|
|
import os
|
|
|
import paho.mqtt.client as mqtt
|
|
|
import json
|
|
|
+import time
|
|
|
from dotenv import load_dotenv
|
|
|
|
|
|
# Load the .env file
|
|
@@ -228,29 +229,40 @@ def check_current_status(client: mqtt.Client) -> str:
|
|
|
return userdata['message']
|
|
|
|
|
|
|
|
|
-def update_disc(client: mqtt.Client, disc_message: dict) -> None:
|
|
|
+def update_disc(client: mqtt.Client, disc_message: list) -> None:
|
|
|
"""Update current disc.
|
|
|
|
|
|
Args:
|
|
|
client (mqtt.Client): MQTT Client
|
|
|
disc_message (dict): Current disc information
|
|
|
"""
|
|
|
+ # Publish disc name with QoS 1
|
|
|
client.publish(
|
|
|
"homeassistant/sensor/floppy_player/current_disc/state",
|
|
|
disc_message[1],
|
|
|
- retain=True,
|
|
|
+ qos=1,
|
|
|
+ retain=True
|
|
|
)
|
|
|
+ time.sleep(0.1) # Small delay to ensure messages are sent in order
|
|
|
+
|
|
|
+ # Publish disc type with QoS 1
|
|
|
client.publish(
|
|
|
"homeassistant/sensor/floppy_player/current_disc_type/state",
|
|
|
disc_message[2],
|
|
|
- retain=True,
|
|
|
+ qos=1,
|
|
|
+ retain=True
|
|
|
)
|
|
|
+ time.sleep(0.1)
|
|
|
+
|
|
|
+ # Publish disc ID with QoS 1
|
|
|
client.publish(
|
|
|
"homeassistant/sensor/floppy_player/current_disc_id/state",
|
|
|
disc_message[3],
|
|
|
- retain=True,
|
|
|
+ qos=1,
|
|
|
+ retain=True
|
|
|
)
|
|
|
- print(f"Published current disc: {disc_message}")
|
|
|
+
|
|
|
+ print(f"Published current disc with QoS 1: {disc_message}")
|
|
|
|
|
|
|
|
|
def control_player(client: mqtt.Client, state: str) -> None:
|