-
Hi @olikraus and others, I am trying out the open_iconic_play_2x2 icons in the u8x8 "HelloWorld" example .ino and The last icon I am able to display using the drawUTF8 function is What am I missing here? Any help is greatly appreciated. Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
olikraus
Aug 2, 2021
Replies: 1 comment 10 replies
-
Did you try u8x8_DrawGlyph? Something like for( int i = 64; i < 82; i++ )
u8x8.drawGlyph( (i-64) & 7, (i-64) / 8, i); should draw all the gylphs. |
Beta Was this translation helpful? Give feedback.
10 replies
Answer selected by
m-r-m-s
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you try u8x8_DrawGlyph? Something like
should draw all the gylphs.