在 3 种颜色之间随机更改新像素,在每个像素上随机更改

Changing neopixels randomly between 3 colors, on each pixel randomly

所以我目前有 2x 12 Pixel Neopixel 环,运行 来自 pi 零 W。

LED 都按预期工作,通过电平转换器等,并按预期做出反应。

完全菜鸟 python 但我可以控制像素并让它们做我想做的事,但是我目前想让每个环上的每个像素随机在 3 种设置颜色之间随机切换.基本上具有闪烁效果,但仅限于该颜色范围。

目前我只是在一个函数中手动更改每个像素,该函数从我的脚本中调用,并循环一定时间。它工作正常,但有点不优雅。

def Lights_Flicker():
    
    pixels[0] = (255, 0, 0,0)
    pixels.show()
    time.sleep(.02)
    
    pixels[12] = (255, 0, 0,0)
    pixels.show()
    time.sleep(.02)

    pixels[6] = (122, 100, 0,0)
    pixels.show()
    time.sleep(.02)
    
    pixels[23] = (122, 100, 0,0)
    pixels.show()
    time.sleep(.02)

使用它循环函数 x 秒。 (声音正在播放时)

while time.time() < t_end:
            Lights_Flicker()

我对计时部分很满意,只是颜色在闪烁。如果有人知道如何更干净地做到这一点,那就太棒了。

感谢观看

我相信像这样的东西应该可以满足您的要求...

from random import randint

colors = [ (255,0,0,0), # put all color tuples here
           (122,100,0,0),
         ]

pixel_num = [ 0, # put all pixels here
              6,
              12,
              23,
            ]

while time.time() <= t_end:
    rand_pixel = randint(0, len(pixel_num)-1)
    rand_color = randint(0, len(colors)-1)

    new_pixel = pixel_num[rand_pixel]
    new_color = colors[rand_color]

    pixels[new_pixel] = new_color
    pixels.show()
    
    time.sleep(0.02)