peterhinch/micropython-samples

Degrees?

pedrofelipest opened this issue · 2 comments

How to use symbol degrees ° in ssd1306?

The ° symbol has value 176 (ord('°')) so you need to use font_to_py.py to generate the necessary extended ASCII (the -l argument). See the docs. You should then be able to print the character in the normal way.

Thanks @peterhinch, It worked.