sync_screen.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import time
  2. import board
  3. import adafruit_ssd1306
  4. from tenacity import retry, stop_after_attempt
  5. from mopidy_json_client import MopidyClient
  6. from datetime import datetime
  7. @retry(stop=stop_after_attempt(5))
  8. def current_track():
  9. mopidy = MopidyClient()
  10. if mopidy.playback.get_state() == "stopped":
  11. oled.text("Nothing", 32, 26, 1)
  12. oled.text("Playing", 32, 36, 1)
  13. return
  14. if mopidy.playback.get_state() == "paused":
  15. oled.text("Paused", 32, 36, 1)
  16. return
  17. current_track_data = mopidy.playback.get_current_track()
  18. time_position = datetime.fromtimestamp(
  19. mopidy.playback.get_time_position() / 1000.0
  20. ).strftime("%M:%S")
  21. if "ytmusic" in current_track_data["uri"]:
  22. if "album" in current_track_data:
  23. totalTime = current_track_data["length"]
  24. track_total_length = datetime.fromtimestamp(totalTime / 1000.0).strftime(
  25. "%M:%S"
  26. )
  27. current_data = {
  28. "Artist": current_track_data["artists"][0]["name"],
  29. "Album": current_track_data["album"]["name"],
  30. "Song": current_track_data["name"],
  31. "TrackTime": time_position + "/" + track_total_length,
  32. }
  33. elif "ytmusic:track" in current_track_data["uri"]:
  34. totalTime = current_track_data["length"]
  35. track_total_length = datetime.fromtimestamp(totalTime / 1000.0).strftime(
  36. "%M:%S"
  37. )
  38. current_data = {
  39. "Artist": "-",
  40. "Album": current_track_data["artists"][0]["name"],
  41. "Song": current_track_data["name"],
  42. "TrackTime": time_position + "/" + track_total_length,
  43. }
  44. else:
  45. try:
  46. stream_title = mopidy.playback.get_stream_title()
  47. artist_and_song = stream_title.split(" - ")
  48. except:
  49. stream_title = "None"
  50. artist_and_song = ["None", "None"]
  51. current_data = {
  52. "Artist": current_track_data["album"]["name"],
  53. "Album": artist_and_song[0],
  54. "Song": artist_and_song[1],
  55. "TrackTime": time_position,
  56. }
  57. mopidy.disconnect()
  58. oled.text(current_data["Artist"], 0, 16, 1)
  59. oled.text(current_data["Album"], 0, 26, 1)
  60. oled.text(current_data["Song"], 0, 36, 1)
  61. oled.text(current_data["TrackTime"], 0, 46, 1)
  62. return
  63. WIDTH = 128
  64. HEIGHT = 64
  65. # Use for I2C.
  66. i2c = board.I2C()
  67. oled = adafruit_ssd1306.SSD1306_I2C(WIDTH, HEIGHT, i2c, addr=0x3C)
  68. while True:
  69. oled.fill(0)
  70. oled.text("Floppy Player", 26, 0, 1)
  71. current_track()
  72. oled.show()
  73. time.sleep(2)