viri-leds-dmx-sacn/lights/ignition_wal_l710.py

16 lines
317 B
Python
Raw Normal View History

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 IgnitionWALL710(BaseDMXLight):
name = "Ignition WAL-L710 PAR"
def _dump(self):
return self.address, [
self.intensity,
self.red,
self.green,
self.blue,
self.white,
2023-08-07 12:48:18 +00:00
0, # program
2023-08-07 11:39:15 +00:00
]