How can I display Korean in STM32F429ZI Discovery?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2022-01-19 9:10 PM
Hi, I want to display Korean in STM32F429ZI discovery LCD.
Unicode::snprintf(textArea_1_Buffer, TEXTAREA_1_SIZE, "%s", "남");-> Display ???
- TouchGFX Designer Display
- Wildcard Ranges are 0x0000-0xffff
- textArea Wildcard
How can I change Korean used to Unicode::snprintf?
Solved! Go to Solution.
- Labels:
-
STM32F4 Series
-
TouchGFX
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2022-01-19 11:30 PM
Have you ever had a look at this thread that discusses a similar problem?
Regards
/Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2022-01-19 11:30 PM
Have you ever had a look at this thread that discusses a similar problem?
Regards
/Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
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();
