ShieldHardwareNeopixelOn this pageNeopixelStemi Shield has one NeoPixel included on the board. It can be accessed through pin board.IO11.LibraryLibrary for NeoPixel is provided by Adafruit.Examplemain.pyimport boardimport neopixelpixels = neopixel.NeoPixel(board.IO11, 10, auto_write=False)pixels[0] = (10, 0, 0)pixels.show()