Files
@ 71eac274c98f
Branch filter:
Location: light9/bin/staticclient - annotation
71eac274c98f
1.1 KiB
text/plain
new networking config to put dmx on its own box
Ignore-this: 3ed4db167e8daec1670d6389a6efc159
Ignore-this: 3ed4db167e8daec1670d6389a6efc159
c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec f066d6e874db c78a8f8a08ec c78a8f8a08ec f066d6e874db c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec 7772cc48e016 7772cc48e016 c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec 7772cc48e016 c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec 7772cc48e016 c78a8f8a08ec c78a8f8a08ec c78a8f8a08ec | #!bin/python
"""
push a dmx level forever
"""
import time, logging
from optparse import OptionParser
import logging, urllib.request, urllib.parse, urllib.error
from twisted.internet import reactor, tksupport, task
from rdflib import URIRef, RDF, RDFS, Literal
from run_local import log
log.setLevel(logging.DEBUG)
from light9 import dmxclient, showconfig, networking
if __name__ == "__main__":
parser = OptionParser(usage="%prog")
parser.add_option('--chan', help='channel number, starts at 1',
type=int) #todo: or name or uri
parser.add_option('--level', help='0..1', type=float)
parser.add_option('-v', action='store_true', help="log debug level")
opts, args = parser.parse_args()
log.setLevel(logging.DEBUG if opts.v else logging.INFO)
levels = [0] * (opts.chan - 1) + [opts.level]
log.info('staticclient will write this forever: %r', levels)
def write():
log.debug('writing %r', levels)
dmxclient.outputlevels(levels, twisted=1)
log.info('looping...')
task.LoopingCall(write).start(1)
reactor.run()
|