add Pulsar Chromaflood 200 to fixtures

This commit is contained in:
Franzi 2024-05-30 12:45:11 +01:00
parent 1628acd6c3
commit b4e6851e32
Signed by: kunsi
GPG key ID: 12E3D2136B818350
3 changed files with 20 additions and 1 deletions

View file

@ -0,0 +1,16 @@
from colorsys import hsv_to_rgb
from .common import BaseDMXLight
class PulsarChromaflood200(BaseDMXLight):
name = "Pulsar Chromaflood 200 (10-Channel Mode)"
def _dump(self):
return self.address, [
self.red,
self.green,
self.blue,
0,0,0, # chase 1
0,0,0, # chase 2
self.intensity
]