"""
MicroPython NeoPixels Example for Wokwi.com
"""
import ujson
from neopixel import NeoPixel
from machine import Pin
from time import sleep
pixels = NeoPixel(Pin(13), 16)
pixels.fill((255, 0, 0))
pixels.write()
"""
MicroPython NeoPixels Example for Wokwi.com
"""
import ujson
from neopixel import NeoPixel
from machine import Pin
from time import sleep
pixels = NeoPixel(Pin(13), 16)
pixels.fill((255, 0, 0))
pixels.write()