from machine import Pin
from utime import sleep, sleep_ms
from neopixel import NeoPixel


np= NeoPixel(Pin(4),2)


while True:
    np[0]=(230,9,248)
    np[1]=(249,182,4)
    np.write()