Changeset - 58069577abc2
[Not reviewed]
default
0 1 0
Drew Perttula - 8 years ago 2017-06-10 05:58:38
drewp@bigasterisk.com
collector dummy label
Ignore-this: 476849e290dbde90254004d367ce7f46
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/collector/output.py
Show inline comments
 
@@ -56,25 +56,25 @@ class Output(object):
 
class DummyOutput(Output):
 
    def __init__(self, uri, *args):
 
        self.uri = uri
 
        self.numChannels = args[-1]
 
    
 
    def update(self, values):
 
        pass
 

	
 
    def flush(self):
 
        pass
 

	
 
    def shortId(self):
 
        return repr(self)
 
        return 'null'
 

	
 
        
 
class DmxOutput(Output):
 
    def __init__(self, uri, numChannels):
 
        self.uri = uri
 
        self.numChannels = numChannels
 

	
 
    def flush(self):
 
        pass
 

	
 
    def _loop(self):
 
        start = time.time()
0 comments (0 inline, 0 general)