qmsk/dmx/control.py
changeset 83 136e210fce82
parent 74 9031dafa39d6
child 87 2179a4e28aba
equal deleted inserted replaced
82:b5878197d017 83:136e210fce82
     1 import collections
     1 import collections
     2 import logging; log = logging.getLogger('qmsk.dmx.control')
     2 import logging; log = logging.getLogger('qmsk.dmx.control')
     3 import serial
     3 import serial
       
     4 
       
     5 """
       
     6     Low-level DMX channel output.
       
     7 """
     4 
     8 
     5 class DMXError (Exception) :
     9 class DMXError (Exception) :
     6     def __init__ (self, **kwargs) :
    10     def __init__ (self, **kwargs) :
     7         self.kwargs = kwargs
    11         self.kwargs = kwargs
     8 
    12