annotate DataTypes/dmxlevel.py @ 268:d5858e9fa689
keyboardcomposer destroy fix and cleanups
- We were destroying KeyboardComposer a little too much. Fortunately,
we weren't passing the right number of arguments, so this was merely
an error.
- About the TODO comment removed: we don't need to use combine_dict
since Submaster logic will be changed entirely when we/if we move
to a SubServer world and keyboard composer will not be the wiser.
author |
David McClosky <dmcc@bigasterisk.com> |
date |
Fri, 17 Jun 2005 02:21:19 +0000 |
parents |
45b12307c695 |
children |
|
rev |
line source |
0
|
1 ###
|
|
2
|
|
3 """
|
|
4 Snippet 0x93.2b: example of outputting a special type
|
|
5
|
|
6 class DMXLevel(float):
|
|
7 def __init__(self,f):
|
|
8 self.value = min(max(0,f),255)
|
|
9 ...
|
|
10 def __get__(...) # maybe
|
|
11
|
|
12 output.dmxlevel = DMXLevel(300)
|
|
13
|
|
14 >>> print output.dmxlevel
|
|
15 255
|
|
16
|
|
17 dmxlevel = DMXLevel(3)
|
|
18 dmxlevel += 800
|
|
19 d = d + 800
|
|
20
|
|
21 There's yer problem:
|
|
22 http://python.org/doc/current/ref/numeric-types.html#l2h-152
|
|
23
|
|
24 """
|