main.py 846 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import time
  2. from mpd import MPDClient
  3. import lcd
  4. client = MPDClient()
  5. client.timeout = 60
  6. client.connect("localhost", 6600)
  7. def main():
  8. title = ""
  9. station = ""
  10. elapsed = ""
  11. while(True):
  12. stats = client.status()
  13. if elapsed == stats.get("elapsed", "0"):
  14. refresh(stats["song"])
  15. elapsed = stats.get("elapsed", "0")
  16. info = client.currentsong()
  17. if station != info.get("name", ""):
  18. station = info.get("name", "")
  19. print(station)
  20. lcd.write(station, title)
  21. if title != info.get("title", ""):
  22. title = info.get("title", "")
  23. print(title)
  24. lcd.write(station, title)
  25. time.sleep(10)
  26. def refresh(song):
  27. client.stop()
  28. time.sleep(1)
  29. client.play(song)
  30. if __name__ == "__main__":
  31. main()