parent
e109e99891
commit
77c5ea3820
6
main.py
6
main.py
|
@ -111,7 +111,7 @@ def randomColor(strip):
|
||||||
strip.show()
|
strip.show()
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
def ColorFadeIn(strip):
|
def colorFadeIn(strip):
|
||||||
color = Color(randint(0, 255), randint(0, 255), randint(0, 255))
|
color = Color(randint(0, 255), randint(0, 255), randint(0, 255))
|
||||||
for i in range(strip.numPixels()):
|
for i in range(strip.numPixels()):
|
||||||
strip.setPixelColor(i, color)
|
strip.setPixelColor(i, color)
|
||||||
|
@ -160,6 +160,8 @@ if __name__ == '__main__':
|
||||||
mode = 3
|
mode = 3
|
||||||
elif payload == "Random Color per LED":
|
elif payload == "Random Color per LED":
|
||||||
mode = 4
|
mode = 4
|
||||||
|
elif payload == "Color fade-in":
|
||||||
|
mode = 5
|
||||||
|
|
||||||
strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL)
|
strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL)
|
||||||
strip.begin()
|
strip.begin()
|
||||||
|
@ -206,6 +208,8 @@ if __name__ == '__main__':
|
||||||
randomColor(strip)
|
randomColor(strip)
|
||||||
elif mode == 4:
|
elif mode == 4:
|
||||||
randomColorPerLED(strip)
|
randomColorPerLED(strip)
|
||||||
|
elif mode == 5:
|
||||||
|
colorFadeIn(strip)
|
||||||
else:
|
else:
|
||||||
if singleExecute == True:
|
if singleExecute == True:
|
||||||
singleExecute = False
|
singleExecute = False
|
||||||
|
|
Loading…
Reference in New Issue