2 `neopixel_write` - NeoPixel precision timed writing support
3 =================================================
5 See `CircuitPython:neopixel_write` in CircuitPython for more details.
12 from adafruit_blinka.agnostic import detector
14 if detector.board.any_raspberry_pi:
15 from adafruit_blinka.microcontroller.bcm283x import neopixel as _neopixel
16 elif "sphinx" in sys.modules:
19 raise NotImplementedError("Board not supported")
22 def neopixel_write(gpio, buf):
23 """Write buf out on the given DigitalInOut."""
24 return _neopixel.neopixel_write(gpio, buf)