Mercurial > code > home > repos > light9
view DataTypes/dmxlevel.py @ 289:3b73f0a58a54
Move general use gyro function get_sub to Submaster, make global Submasters object
- gyro's error subs now look like normal subs since they might reload and turn
into good subs.
- Also, add Submaster.fullsub which helps you make subs from channel names.
author | David McClosky <dmcc@bigasterisk.com> |
---|---|
date | Sat, 18 Jun 2005 01:45:05 +0000 |
parents | 45b12307c695 |
children |
line wrap: on
line source
### """ Snippet 0x93.2b: example of outputting a special type class DMXLevel(float): def __init__(self,f): self.value = min(max(0,f),255) ... def __get__(...) # maybe output.dmxlevel = DMXLevel(300) >>> print output.dmxlevel 255 dmxlevel = DMXLevel(3) dmxlevel += 800 d = d + 800 There's yer problem: http://python.org/doc/current/ref/numeric-types.html#l2h-152 """