Compare commits

..

No commits in common. "56b1f3c6e4dbac68d14004837d9db3fb4afff83b" and "c43bfe425ea547a936486ea189d4b3a9b47ec01b" have entirely different histories.

View File

@ -5,7 +5,7 @@ import asyncio
from mpd import MPDClient from mpd import MPDClient
IO_DELAY = (1.0 / 20.0) IO_DELAY = (1.0 / 20.0)
MPD_DELAY = 0.5 MPD_DELAY = 1
class display(object): class display(object):
def __init__(self): def __init__(self):
@ -22,6 +22,9 @@ class display(object):
def render(self): def render(self):
print("render NYI") print("render NYI")
def get_image(self):
print("get_image NYI")
def animate(self, ticks): def animate(self, ticks):
print("animate NYI") print("animate NYI")