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

16 lines
317 B
Python
Raw Normal View History

2023-08-07 13:39:15 +02:00
from .common import BaseDMXLight
2023-08-07 14:48:18 +02:00
2023-08-07 13:39:15 +02: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 14:48:18 +02:00
0, # program
2023-08-07 13:39:15 +02:00
]