We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The image() function does a loop and sets the display pixel by pixel:
image()
Adafruit_CircuitPython_HT16K33/adafruit_ht16k33/matrix.py
Lines 145 to 147 in 4eed803
auto_write
Adafruit_CircuitPython_HT16K33/adafruit_ht16k33/ht16k33.py
Lines 138 to 139 in 4eed803
Could maybe force auto_write off before looping and then back to whatever it was after the loop.
The text was updated successfully, but these errors were encountered:
That's how I would do it. :) Don't forget to apply the same thing in the Matrix8x8x2 class's image() function.
Sorry, something went wrong.
84bb364
No branches or pull requests
The
image()
function does a loop and sets the display pixel by pixel:Adafruit_CircuitPython_HT16K33/adafruit_ht16k33/matrix.py
Lines 145 to 147 in 4eed803
If
auto_write
is on, this will cause the entire display to be updated with each pixel set:Adafruit_CircuitPython_HT16K33/adafruit_ht16k33/ht16k33.py
Lines 138 to 139 in 4eed803
This leads to a noticeably slow update.
Could maybe force
auto_write
off before looping and then back to whatever it was after the loop.The text was updated successfully, but these errors were encountered: