15 lines
317 B
Python
15 lines
317 B
Python
from .common import BaseDMXLight
|
|
|
|
|
|
class IgnitionWALL710(BaseDMXLight):
|
|
name = "Ignition WAL-L710 PAR"
|
|
|
|
def _dump(self):
|
|
return self.address, [
|
|
self.intensity,
|
|
self.red,
|
|
self.green,
|
|
self.blue,
|
|
self.white,
|
|
0, # program
|
|
]
|