from machine import Pin
from neopixel import NeoPixel
pin = Pin(32, Pin.OUT) # set GPIO0 to output to drive NeoPixels
np = NeoPixel(pin, 8) # create NeoPixel driver on GPIO0 for 8 pixels
np[0] = (255, 5, 5) # set the first pixel to white with low intensity
np[1] = (255, 0, 0) # set the second pixel to red with low intensity
np[2] = (0, 255, 0) # set the third pixel to green with low intensity
np[3] = (0, 0, 255) # set the fourth pixel to blue with low intensity
np[4] = (255, 255, 0) # set the fifth pixel to yello with low intensity
np[5] = (85, 85, 0)
np.write()