scruss / micropython-is31fl3731

Micropython driver for charlieplexed PWM LEDs, with ELECFREAKS Pico:ed added

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Driver for IS31FL3731-based LED matrices

Original documentation at http://micropython-is31fl3731.readthedocs.io/

Trivially modified to add support for the 7x17 matrix built into the ELECFREAKS Pico:ed:

from machine import I2C
import is31fl3731

i2c = I2C(1)  # scl=19, sda=18
display = is31fl3731.PicoEd(i2c)
display.fill(127)

About

Micropython driver for charlieplexed PWM LEDs, with ELECFREAKS Pico:ed added

License:MIT License


Languages

Language:Python 100.0%