micropython-ws2812
micropython-ws2812 copied to clipboard
MicroPython driver for WS2812 RGB LEDs (WS2812B, AdaFruit NeoPixels, ...).
will this work with arduino IDE?
do i put the total number of led's i'm using like if i use two 24 led ring the total would be 48 and what is the spi_bus=1 used for?
These changes should make the library a swap in replacement for code that uses the standard MicroPython builtin neopixel library. That is by replacing: import neopixel npixels = neopixel.NeoPixel(NeoPin,led_count) with:...