screen_output.py 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
  2. # SPDX-License-Identifier: MIT
  3. """
  4. This demo will fill the screen with white, draw a black box on top
  5. and then print Hello World! in the center of the display
  6. This example is for use on (Linux) computers that are using CPython with
  7. Adafruit Blinka to support CircuitPython libraries. CircuitPython does
  8. not support PIL/pillow (python imaging library)!
  9. """
  10. import asyncio
  11. import time
  12. import board
  13. import digitalio
  14. from PIL import Image, ImageDraw, ImageFont
  15. import adafruit_ssd1306
  16. from mopidy_async_client import MopidyClient
  17. from datetime import datetime
  18. async def current_track():
  19. mopidy = await MopidyClient().connect()
  20. res = await mopidy.playback.get_current_track()
  21. b = datetime.fromtimestamp(
  22. await mopidy.playback.get_time_position() / 1000.0
  23. ).strftime("%M:%S")
  24. if "ytmusic" in res["uri"]:
  25. totalTime = res["length"]
  26. a = datetime.fromtimestamp(totalTime / 1000.0).strftime("%M:%S")
  27. current_data = {
  28. "Artist": res["artists"][0]["name"],
  29. "Album": res["album"]["name"],
  30. "Song": res["name"],
  31. "TrackTime": b + "/" + a,
  32. }
  33. else:
  34. a = await mopidy.playback.get_stream_title()
  35. data = a.split(" - ")
  36. current_data = {
  37. "Artist": res["name"],
  38. "Album": data[0],
  39. "Song": data[1],
  40. "TrackTime": "",
  41. }
  42. await mopidy.disconnect()
  43. oled.text(current_data["Artist"], 0, 16, 1)
  44. oled.text(current_data["Album"], 0, 26, 1)
  45. oled.text(current_data["Song"], 0, 36, 1)
  46. oled.text(current_data["TrackTime"], 0, 46, 1)
  47. return
  48. # Define the Reset Pin
  49. oled_reset = digitalio.DigitalInOut(board.D4)
  50. # Change these
  51. # to the right size for your display!
  52. WIDTH = 128
  53. HEIGHT = 64 # Change to 64 if needed
  54. BORDER = 0
  55. # Use for I2C.
  56. i2c = board.I2C()
  57. oled = adafruit_ssd1306.SSD1306_I2C(WIDTH, HEIGHT, i2c, addr=0x3C, reset=oled_reset)
  58. async def main():
  59. while True:
  60. oled.fill(0)
  61. oled.text("Floppy Player", 26, 0, 1)
  62. await current_track()
  63. oled.show()
  64. time.sleep(5)
  65. asyncio.run(main())