adafruit / Adafruit_CircuitPython_HT16K33

Adafruit CircuitPython driver for the HT16K33, a LED matrix driver IC.
MIT License
41 stars 29 forks source link

Segment display digit access not auto updating #22

Closed caternuson closed 6 years ago

caternuson commented 6 years ago

If auto_write is True, this shouldn't require calling show, but it does:

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()
>>> 
caternuson commented 6 years ago

Fixed by #25