micropython-i2c-lcd icon indicating copy to clipboard operation
micropython-i2c-lcd copied to clipboard

Custom char not working

Open dobova86 opened this issue 2 years ago • 4 comments

Hi, running the example I can't see custom char an all my display type (1602 and 2004). Is there any suggestion? Dome

dobova86 avatar Apr 13 '23 16:04 dobova86

Hi @dobova86, seems to be valid. I can kind of fix the issue by calling lcd.print(chr(0)) twice. Maybe needs some more investigations. Could also be a timing issue as it does not happen when I call the function in the repl

brainelectronics avatar Apr 13 '23 20:04 brainelectronics

I've been able to print custom char sending lcd.set_cursor(col=0, row=0) before print. May be some memory state need to be reset before lcd.print( chr(x)).

dobova86 avatar Apr 14 '23 07:04 dobova86

I have created PR with a fix that works for me.

michael-sulyak avatar Oct 21 '23 15:10 michael-sulyak

Came here to report the same. I can confirm that the PR works as expected.

slabua avatar Jan 01 '24 14:01 slabua