changeset 1980:5c8b6cd330da

fix artnet setup Ignore-this: b6a4f26b87bb2e61e3391d620c5d1462
author drewp@bigasterisk.com
date Sat, 08 Jun 2019 09:18:33 +0000
parents 19eef99e059e
children 5fff44f963de
files bin/collector
diffstat 1 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/bin/collector	Sat Jun 08 09:16:08 2019 +0000
+++ b/bin/collector	Sat Jun 08 09:18:33 2019 +0000
@@ -27,7 +27,7 @@
 from rdfdb.syncedgraph import SyncedGraph
 from standardservice.scalessetup import gatherProcessStats
 
-from light9.collector.output import Udmx, ArtnetDmx, DummyOutput  # noqa
+from light9.collector.output import ArtnetDmx, DummyOutput  # noqa
 
 
 class Updates(cyclone.websocket.WebSocketHandler):
@@ -66,13 +66,10 @@
 def launch(graph, doLoadTest=False):
     try:
         # todo: drive outputs with config files
-        rate = 20  # On udmx, 22 breaks. 28 breaks. 30 breaks.
+        rate = 30
         outputs = [
-
-            #Udmx(L9['output/dmxB/'], bus=1, address=None, lastDmxChannel=221, rate=rate),
+            ArtnetDmx(L9['output/dmxA/'], host='127.0.0.1', port=6445, rate=rate),
             #DummyOutput(L9['output/dmxA/']),
-            DummyOutput(L9['output/dmxA/']),
-            ArtnetDmx(L9['output/dmxB/'], rate=rate),
         ]
     except Exception:
         log.error("setting up outputs:")