-
Notifications
You must be signed in to change notification settings - Fork 22
Closed
Labels
Description
I am using a feather M0 simple, with a Matrix board.
When I try to run the following:
import adafruit_is31fl3731
import board
import busio
with busio.I2C(board.SCL, board.SDA) as i2c:
display = adafruit_is31fl3731.Matrix(i2c)
display.fill(127)
I get
AttributeError: 'Matrix' object has no attribute 'fill'
If I try to run the same code again in the same REPL session I get:
MemoryError: parser could not allocate enough memory
What am I doing wrong?
Thanks,
Boris