import machine, neopixel n = 14 np = neopixel.NeoPixel(machine.Pin(0), n) for i in range(n): np[i] = (10, 10, 10) np.write()