Gadgetoid / doglcd-arduino

Automatically exported from code.google.com/p/doglcd
0 stars 0 forks source link

Custom characters are not printed unless home() or setCursor() was called #3

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
You define a custom character with `lcd.createChar()`
You try to print the newly created character on the display.
The character is *not* displayed.

You *have* to call either `lcd.home()` or `lcd.setCursor()` after the
definition of the char with `lcd.createChar()`

Reason for this error is unknown.
Workaround :
Define characters before you start printing anything on the display.

Original issue reported on code.google.com by e.fa...@wayoda.org on 22 Apr 2010 at 10:35