from machine import Pin
from neopixel import NeoPixel

leds = NeoPixel(Pin(23), 2)

leds[0] = (255, 140, 0)
leds[1] = (255, 255, 0)
leds.write()