Mercurial > code > home > repos > light9
comparison attic/Nodes/dmxout.py @ 299:6931479b657a
Make attic, move a bunch of old files to it
author | David McClosky <dmcc@bigasterisk.com> |
---|---|
date | Mon, 20 Jun 2005 18:52:21 +0000 |
parents | Nodes/dmxout.py@45b12307c695 |
children |
comparison
equal
deleted
inserted
replaced
298:d0f29e247af4 | 299:6931479b657a |
---|---|
1 | |
2 | |
3 class ops(Ops): | |
4 def changed(self, input, output, stateaccess): | |
5 input.dmx | |
6 | |
7 class DMXOut(Node): | |
8 def get_default_ports(self): | |
9 return {'dmx':InputPort(DMX,required=1,maxpins=1)} | |
10 def get_default_params(self): | |
11 return {'outputrefresh':NextTime,'outputdevice':DMXDevice} |