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
If auto_write is True, this shouldn't require calling show, but it does:
auto_write
True
show
Adafruit CircuitPython 3.0.1 on 2018-08-21; Adafruit Feather M0 Express with samd21g18 >>> import board, busio >>> from adafruit_ht16k33.segments import Seg7x4 >>> i2c =busio.I2C(board.SCL, board.SDA) >>> disp = Seg7x4(i2c) >>> disp.auto_write True >>> disp[0] = '1' >>> disp.show() >>>
The text was updated successfully, but these errors were encountered:
Merge pull request #25 from caternuson/iss22
3dead93
Fix for #22
Fixed by #25
Sorry, something went wrong.
caternuson
No branches or pull requests
If
auto_write
isTrue
, this shouldn't require callingshow
, but it does:The text was updated successfully, but these errors were encountered: