screen_output.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. current_track_data = await mopidy.playback.get_current_track()
  10. time_position = datetime.fromtimestamp(
  11. await mopidy.playback.get_time_position() / 1000.0
  12. ).strftime("%M:%S")
  13. if "ytmusic" in current_track_data["uri"]:
  14. totalTime = current_track_data["length"]
  15. track_total_length = datetime.fromtimestamp(totalTime / 1000.0).strftime(
  16. "%M:%S"
  17. )
  18. current_data = {
  19. "Artist": current_track_data["artists"][0]["name"],
  20. "Album": current_track_data["album"]["name"],
  21. "Song": current_track_data["name"],
  22. "TrackTime": time_position + "/" + track_total_length,
  23. }
  24. else:
  25. stream_title = await mopidy.playback.get_stream_title()
  26. artist_and_song = stream_title.split(" - ")
  27. current_data = {
  28. "Artist": current_track_data["name"],
  29. "Album": artist_and_song[0],
  30. "Song": artist_and_song[1],
  31. "TrackTime": "",
  32. }
  33. await mopidy.disconnect()
  34. oled.text(current_data["Artist"], 0, 16, 1)
  35. oled.text(current_data["Album"], 0, 26, 1)
  36. oled.text(current_data["Song"], 0, 36, 1)
  37. oled.text(current_data["TrackTime"], 0, 46, 1)
  38. return
  39. WIDTH = 128
  40. HEIGHT = 64
  41. # Use for I2C.
  42. i2c = board.I2C()
  43. oled = adafruit_ssd1306.SSD1306_I2C(WIDTH, HEIGHT, i2c, addr=0x3C)
  44. async def main():
  45. while True:
  46. oled.fill(0)
  47. oled.text("Floppy Player", 26, 0, 1)
  48. await current_track()
  49. oled.show()
  50. time.sleep(10)
  51. asyncio.run(main())