adafruit / circuitpython

CircuitPython - a Python implementation for teaching coding with microcontrollers
https://circuitpython.org
Other
4.02k stars 1.19k forks source link

Option to color print() on displayio #7200

Open bobricius opened 1 year ago

bobricius commented 1 year ago

Hi is here any secret codes/or can be added to use colors on internal display connected to displayio? Thanks for circuitpython, is my favorite imbedded language ;)

deshipu commented 1 year ago

Unfortunatley, the way terminalio is implemented using displayio.TileGrid, it's not possible to change the colors of individual characters, though you can change the color of the whole screen by changing the palette being used. Adding it would require quite some changes.