feat: Add lyre fixture
This commit is contained in:
parent
9adb058ead
commit
1868555847
1 changed files with 15 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
""""""
|
||||
|
||||
from colour import Color
|
||||
|
||||
from .lights import AbstractLight
|
||||
|
@ -23,6 +24,20 @@ class StrobInv(AbstractLight):
|
|||
dim = RInt(0, 1)
|
||||
|
||||
|
||||
class Lyre(AbstractLight):
|
||||
address_size = 14
|
||||
|
||||
pan = RInt(0, 0)
|
||||
tilt = RInt(0, 1)
|
||||
color = RInt(0, 5)
|
||||
strobe = RInt(255, 6)
|
||||
dimmer = RInt(255, 7)
|
||||
gobo = RInt(0, 8)
|
||||
gobo_rot = RInt(0, 9)
|
||||
prism = RInt(0, 12)
|
||||
zoom = RInt(0, 13)
|
||||
|
||||
|
||||
class Wash(AbstractLight):
|
||||
"""
|
||||
Wash
|
||||
|
|
Loading…
Reference in a new issue