adafruit / Adafruit_CircuitPython_HT16K33

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

Updates for segment displays #12

Closed caternuson closed 6 years ago

caternuson commented 6 years ago

Setting the segment display output now works like this:

# for text
disp.print("BEEF")
# for numbers
disp.print(3.14)
# for individual digit
disp[2] = "G"

All of the above works for the alpha-numeric display Seg14x4, only numbers can be used with Seg7x4.