Edzelf / ESP32-Radio

Internet radio based on ESP32, VS1053 and a TFT screen.
GNU General Public License v3.0
987 stars 229 forks source link

OLED1306-Missing characters in FONT and Draw Bitmap #236

Open DaTTcz opened 5 years ago

DaTTcz commented 5 years ago

I have a problem displaying META TAG from an internet radio MP3 stream. LCD OLED does not display characters because it is missing in FONT. (like šščřžýáíéúů ....) And next, I can't add any picture to the display at X,Y position. (Draw Bitmap array). Missing code in SSD1306.h for this. This can be added ?

Edzelf commented 5 years ago

You may replace the SSD1306.h file. My version can only display ASCII characters from 0x20 to 0x7E.

DaTTcz commented 5 years ago

To add more characters, just add more characters in the array in SSD1306.h ? Or is there anything else to change in the code?

Edzelf commented 5 years ago

Yes, you must add them to the array. I do not know if the special characters are coded in one byte. If so, it would not be too difficult to change the code. Just increase the range.