A matrix-centric Python driver for the IS31FL3733 16x12 I2C scanning matrix driver.
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