Ich möchte auf einem SSD1306 display das icon “air” aus dem google font gfonts darstellen.
Leider bekomme ich nur so ein Kästchen mit X dargestellt.
font:
- file: 'arial.ttf'
id: my_font48
size: 48
- file: 'arial.ttf'
id: my_font16
size: 16
- file: 'MaterialSymbolsRounded_28pt-Medium.ttf'
id: my_symbols28
size: 16
glyphs:
- "\U000Fefd8" # mdi-air
das icon “air” aus gfont hat den code “efd8”
siehe google fonts:
mein Aufruf in lambda lautet:
lambda: |-
it.printf(64, 0, id(my_symbols28), "\U000Fefd8");
was ist falsch an meinem it.printf?