screen_output.py 2.6 KB

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