I want to show some custom characters on my LCD display (i2c 162 and 204) controlled by the hd44780.
I know that the hd44780 has a limitation of maximum 8 custom characters - from code 0x00 to 0x07.
Is there any way to define new custom characters when running the code on the arduino? I know how to create a custom character, but is it possible to "swap" these in runtime so i can use more than the limited 8 characters?
Just to add to this. Once one of the definable character codes is displayed on the lcd, if you change the bitmap definition it will also change on the display with no further action required.
If you install the hd44780 library it includes a custom character example, LCDcustomChars, that shows and explains how to do this.
If you have a hd44780 display with a PCF8574 based backpack, you will use the hd44780_I2Cexp i/o class.
After you install the hd44780 library (available in the IDE library manager) you can access and read all the documentation by using the Documentation sketch.
The first thin you will want to do is run the included diagnostic sketch, I2CexpDiag, to verify that everything is working as expected.