Files @ 411de8b46aef
Branch filter:

Location: light9/Nodes/dmxout.py

dmcc
the famous you-are-in-the-process-of-changing-this-light indicator.
the famous you-are-in-the-process-of-changing-this-light indicator.
red = going up
blue = going down

also, a generic color fader in uihelpers.py -- unused (as of now)


class ops(Ops):
    def changed(self, input, output, stateaccess):
        input.dmx
    
class DMXOut(Node):
    def get_default_ports(self):
        return {'dmx':InputPort(DMX,required=1,maxpins=1)}
    def get_default_params(self):
        return {'outputrefresh':NextTime,'outputdevice':DMXDevice}