|
@@ -1,6 +1,6 @@
|
|
|
import os
|
|
|
import sys
|
|
|
-import json
|
|
|
+import time
|
|
|
from dotenv import load_dotenv
|
|
|
from lib.mqtt import create_client, update_disc, control_player, create_config, check_current_disc
|
|
|
|
|
@@ -40,6 +40,7 @@ if len(sys.argv) > 1:
|
|
|
else:
|
|
|
# Pass the parsed data to the update_disc function
|
|
|
control_player(client, "PLAY")
|
|
|
+ time.sleep(1)
|
|
|
update_disc(client, disc_data)
|
|
|
else:
|
|
|
if input_str == "EJECT":
|