2022-01-19 09:10 PM
Hi, I want to display Korean in STM32F429ZI discovery LCD.
Unicode::snprintf(textArea_1_Buffer, TEXTAREA_1_SIZE, "%s", "남");-> Display ???
How can I change Korean used to Unicode::snprintf?
Solved! Go to Solution.
2022-01-19 11:30 PM
Have you ever had a look at this thread that discusses a similar problem?
Regards
/Peter
2022-01-19 11:30 PM
Have you ever had a look at this thread that discusses a similar problem?
Regards
/Peter
2022-01-19 11:36 PM
Thank you
I solved the problem.
I used the font "Malgun Gothic Bold".
And I used this code.
Unicode::fromUTF8( ( const uint8_t *) "하", textArea_1Buffer, TEXTAREA_1_SIZE );
textArea_1.invalidate();