from neopixel import NeoPixel
from machine import Pin
from time import sleep_ms
np= NeoPixel(2, 16)
np[3] =(255, 0, 0)
np.write()