aboutsummaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rwxr-xr-xhost/server.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/host/server.py b/host/server.py
index 2b42855..c011c82 100755
--- a/host/server.py
+++ b/host/server.py
@@ -164,10 +164,11 @@ if __name__ == '__main__':
elif userver.frame_da():
renderer = userver
else:
- static_noise = False #time() % 300 < 60
- if static_noise:
+ static_noise = time() % 300 < 60
+ if False:
foo = os.urandom(640)
frame = bytes([v for c in zip(list(foo), list(foo), list(foo)) for v in c ])
+ sleep(0.05)
else:
try:
frame = next(defaulttexts)