WS2812B use rgbStrip.show()
This commit is contained in:
parent
f31e1a6330
commit
077fa4098a
@ -45,7 +45,7 @@ class RGBStrip:
|
|||||||
self.green[x] = int(green/100*brightness)
|
self.green[x] = int(green/100*brightness)
|
||||||
self.blue[x] = int(blue/100*brightness)
|
self.blue[x] = int(blue/100*brightness)
|
||||||
|
|
||||||
self.onValuesUpdateHandler(self)
|
self.show()
|
||||||
|
|
||||||
def WS2812b(self,id,red,green,blue,brightness=100):
|
def WS2812b(self,id,red,green,blue,brightness=100):
|
||||||
if id < 0 and id > self.STRIP_LENGHT:
|
if id < 0 and id > self.STRIP_LENGHT:
|
||||||
@ -76,6 +76,7 @@ class RGBStrip:
|
|||||||
self.green[id] = int(green/100*brightness)
|
self.green[id] = int(green/100*brightness)
|
||||||
self.blue[id] = int(blue/100*brightness)
|
self.blue[id] = int(blue/100*brightness)
|
||||||
|
|
||||||
|
def show(self):
|
||||||
self.onValuesUpdateHandler(self)
|
self.onValuesUpdateHandler(self)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user