.. highlight:: swift NeoPixel ======== NeoPixels are strands of LED with built-in drivers and are super simple to connect and program. The `MBLNeopixel `_ module allows you to create a `MBLNeopixelStrand `_ object which encapsulates all functionality. Set Neopixel Colors ------------------- This is how you would set the whole stand to green. Note, if it lights up a color other than green, you have the wrong color ordering value. :: // All constants are specific to your NeoPixel stand let length: UInt8 = 30 let strand = device.neopixel?.strand(withColor: .GBR, speed: .slow, pin: 0, length: length) strand?.initializeAsync() for i in 0..