from machine import Pin
from neopixel import NeoPixel
ledinhos = NeoPixel(Pin(21, Pin.OUT), 16)
for x in range(4,11,2):
ledinhos[x] = (0,255,0)
ledinhos.write()from machine import Pin
from neopixel import NeoPixel
ledinhos = NeoPixel(Pin(21, Pin.OUT), 16)
for x in range(4,11,2):
ledinhos[x] = (0,255,0)
ledinhos.write()