We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3bc68c commit b1f7d8bCopy full SHA for b1f7d8b
CircuitPython_Pico_PIO_Neopixel/code.py
@@ -14,7 +14,7 @@
14
num_strands=num_strands, auto_write=False, brightness=.18)
15
16
# Make a virtual PixelMap so that each strip can be controlled independently
17
-strips = [PixelMap(pixels, range(i*30, (i+1)*30), individual_pixels=True)
+strips = [PixelMap(pixels, range(i*strand_length, (i+1)*strand_length), individual_pixels=True)
18
for i in range(num_strands)]
19
20
# This function makes a comet animation with slightly random settings
0 commit comments