Character map does not seem to match A02 tables
See original GitHub issuePlease tell me if I’ve misunderstood, but I think there is a miss-match between the A02 tables and which characters are shown on the display.
When I try to write the Danish/Norwegian letters: æ/ø/å, the screen displays different characters. Check out the attached image, where line one corresponds to the characters on line two. (ae = æ, oe = ø and aa = å).
I wrote to the display using this command:
lcd.write_string("ae, oe, aa\n\ræ ø å")
I used this pdf, page 18, to reference which characters the A02 table contains.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:8 (3 by maintainers)
Top Results From Across the Web
How to Use Special Characters in Windows Documents
Start Character Map. · In the Font box, click the font you want to use. · Click the special character that you want...
Read more >RPLCD/usage.rst at master - GitHub
Should you run into the situation that your character map does not seem to match either the A00 or the A02 tables, please...
Read more >LCD Language System - Marlin Firmware
Use only symbols matching the mapper. On Full Graphic Displays all symbols should be fine. Using the graphical display, you can test for...
Read more >Character to Glyph Mapping Table - Apple Developer
The 'cmap' table maps character codes to glyph indices. ... Character codes that do not correspond to any glyph in the font should...
Read more >U F A02.Html - Buffalo County
We are an Equal Opportunity Employer. We do not discriminate on the basis of race, religion, color, sex, age, national origin, or disability....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sorry for the late response. It’s possible that your display does not match the A00 or A02 tables, but contains a custom mapping.
As described here https://rplcd.readthedocs.io/en/stable/usage.html#character-maps you can use the
show_charmap
target of therplcd-tests
script to write all characters sequentially to the display. Then you can compare with the character maps in the PDF.If there’s a mismatch, you probably need to create your own character map, or alternatively use custom characters or raw character references.
Does that help, @janis-ax @etokheim?
@etokheim @janis-ax alright, I’ll close this issue for now! You can still leave comments though.