summaryrefslogtreecommitdiffstats
path: root/ShowRunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'ShowRunner.py')
-rw-r--r--ShowRunner.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/ShowRunner.py b/ShowRunner.py
index 5a43a99..05877ed 100644
--- a/ShowRunner.py
+++ b/ShowRunner.py
@@ -1,5 +1,6 @@
from bridge import Bridge
from fish_show import FishShow
+from sunrise import SunriseShow
from constants import *
import sys
@@ -9,8 +10,8 @@ from run import server_thread, send_queue, recv_queue
def run_show():
server_thread.start()
bridge = Bridge()
- show = FishShow(bridge, send_queue=recv_queue, recv_queue=send_queue)
- #show = SunriseShow(bridge)
- show.run(framerate=FRAME_RATE)
+ SunriseShow(bridge, send_queue=recv_queue, recv_queue=send_queue).run(framerate=FRAME_RATE)
+ FishShow(bridge, send_queue=recv_queue, recv_queue=send_queue).run(framerate=FRAME_RATE)
+ print "done!"
run_show() \ No newline at end of file