Files @ 6f6d9235e8a0
Branch filter:

Location: light9/Nodes/dmxout.py - annotation

David McClosky
TkGyro added to gyrocontroller, seems mostly functional
Some bugs that still need to be fixed:
- It refuses to go full screen on my machine.
- Text in the middle can catch some events, we'd like it to pass them to
the rectangles under it.


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}