add support for LED Mini Par RGBWwq
This commit is contained in:
parent
5b0802e618
commit
52cb7b2a90
2 changed files with 20 additions and 0 deletions
17
lights/tsss_led_par_rgbw.py
Normal file
17
lights/tsss_led_par_rgbw.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
from .common import BaseDMXLight
|
||||
|
||||
|
||||
class TSSS_LED_PAR_RGBW(BaseDMXLight):
|
||||
name = "TSSS LED PAR RGBW"
|
||||
|
||||
def _dump(self):
|
||||
return self.address, [
|
||||
0, # function
|
||||
0, # mode
|
||||
0, # speed
|
||||
self.intensity,
|
||||
self.red,
|
||||
self.green,
|
||||
self.blue,
|
||||
self.white,
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue