Off when starting

This commit is contained in:
Stefan Bethke 2022-07-31 11:21:33 +02:00
parent dff9bd8b4f
commit f0cbb639e8
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
__pycache__
nohup.out
*~

View file

@ -78,8 +78,8 @@ def main(args):
print(f"Unknown room {args.room}", file=sys.stderr)
sys.exit(64)
dmx.animation = Off()
dmx.color = (128, 128, 128)
dmx.animation = "fade"
dmx.color = (0, 0, 0)
dmx.animation = "off"
run(host='0.0.0.0', port=8080, reloader=False, debug=True)