Higher level NeoPixel driver that presents the strip as a sequence. This is a supercharged version of the original MicroPython driver. Its now more like a normal Python sequence and features slice ...
import board from FrameBuffer import FrameBuffer PIXEL_GP = board.GP28 PIXEL_WIDTH = 32 PIXEL_HEIGHT = 8 fb = FrameBuffer(PIXEL_WIDTH, PIXEL_HEIGHT, PIXEL_GP, bpp=3, alternating=True) fb.show() Adjust ...