2023-08-07 11:39:15 +00:00
|
|
|
from .common import BaseDMXLight
|
|
|
|
|
2023-08-07 12:48:18 +00:00
|
|
|
|
2023-08-07 11:39:15 +00:00
|
|
|
class VarytecHeroWashZoom712(BaseDMXLight):
|
|
|
|
name = "Varytec Hero Wash 712 Z RGBW Zoom"
|
|
|
|
|
|
|
|
def _dump(self):
|
|
|
|
return self.address, [
|
2023-08-07 12:48:18 +00:00
|
|
|
128, # pan
|
|
|
|
128, # pan fine
|
|
|
|
128, # tilt
|
|
|
|
128, # tilt fine
|
|
|
|
0, # speed
|
2023-08-07 11:39:15 +00:00
|
|
|
self.intensity,
|
2023-08-07 12:48:18 +00:00
|
|
|
0, # shutter
|
2023-08-07 11:39:15 +00:00
|
|
|
self.red,
|
|
|
|
self.green,
|
|
|
|
self.blue,
|
|
|
|
self.white,
|
2023-08-07 12:48:18 +00:00
|
|
|
0, # colortemp
|
|
|
|
0, # color macro
|
|
|
|
0, # zoom
|
|
|
|
0, # auto run
|
2023-08-07 11:39:15 +00:00
|
|
|
]
|