mathertel / LiquidCrystal_PCF8574

A library for driving LiquidCrystal displays (LCD) by using the I2C bus and an PCF8574 I2C adapter.
https://www.mathertel.de/Arduino/LiquidCrystal_PCF8574.aspx
BSD 3-Clause "New" or "Revised" License
131 stars 53 forks source link

Non asci characters #8

Closed fondberg closed 5 years ago

fondberg commented 5 years ago

Thanks for a great library! It was the only one which worked with my display. I want to display characters with umlauts which are not in the asci character set. Do you know how to do that? Example: lcd.print("ä ö");

mathertel commented 5 years ago

you must create the characters bitmap and then upload these to the 8 special characters. See createChar() function and samples you can find on the internet.

because all characters will come through the write function of the library you can modify this function in the library for you to replace ascii umlaute to these special characters.