summaryrefslogtreecommitdiffstats
path: root/ShowRunner.py
diff options
context:
space:
mode:
authorAaron Perley <aaron.perley@gmail.com>2016-10-17 14:05:57 -0400
committerAaron Perley <aaron.perley@gmail.com>2016-10-17 14:05:57 -0400
commitebda59b316159f7e568c634cc5d906447928f973 (patch)
tree285c1496d7b31c4b04abc4aa0a3cf3a520ad8936 /ShowRunner.py
parentBugfixes (diff)
downloadbridge-ebda59b316159f7e568c634cc5d906447928f973.tar.zst
Make fish enable/disable state more robust
Diffstat (limited to 'ShowRunner.py')
-rw-r--r--ShowRunner.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ShowRunner.py b/ShowRunner.py
index 61c0cf6..58d325e 100644
--- a/ShowRunner.py
+++ b/ShowRunner.py
@@ -11,6 +11,10 @@ from run import server_thread, send_queue, recv_queue
def run_show():
server_thread.start()
bridge = Bridge()
+
+ print "Press enter to begin show"
+ x = raw_input()
+
TwinkleShow(bridge, send_queue=recv_queue, recv_queue=send_queue).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)