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 ...
Adafruit has announced this month the second release candidate of CircuitPython 6.0.0-rc.2, bringing a few new enhancements to the CircuitPython platform. CircuitPython is a programming language ...
The Adafruit team have this week announced the release of the CircuitPython 5.0.0 beta.0. Beta, offering a largely feature-complete release of the latest CircuitPython platform, although it is still ...