Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 756 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 756 Bytes

Python-IS31FL3733

A matrix-centric Python driver for the IS31FL3733 16x12 I2C scanning matrix driver.

Datasheet

Usage


matrix = IS31FL3733(address=0x5F, busnum=10, DEBUG=False)
print("powering on all pixels")
matrix.enableAllPixels()

print("powering off all pixels via PWM register")
matrix.setAllPixelsPWM([0]*192)

print("let's fade up from 0 to 10 on all pixels")
for value in range(10):
	matrix.setAllPixelsPWM([value]*192)

Example projects

Road Ahead project preview 14 panels of IS31FL3733 powering 336 segmented displays