adafruit / Adafruit_CircuitPython_HT16K33

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

Fix for multiple dots not showing up #34

Closed makermelissa closed 5 years ago

makermelissa commented 5 years ago

Fix for #33. I had to stop using the super()._put() function for this display. It needed to use the high bit and I used the POSITIONS array and it worked great.

caternuson commented 5 years ago

Thanks. I'm not a huge fan of the inheritance layout in this library. The displays are different enough that it's a fairly fragile and klugey arrangement. So just giving up on super() and re-implementing is fine.