-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clear(), home() and backlight off->on all fill the screen with white pixels #127
Comments
Hi. I haven't run across this behavior so far, so I don't really know what could cause this. The contrast is set up properly, right? Maybe it's simply an LCD controller knockoff that is not fully compatible with the original one by Hitachi. |
Maybe the "space" character in the character ROM is filled with the rectangle instead of the space. You could dump the entire character map on your LCD with the |
I ran into this same problem, though it was just |
Thanks @dbrgn . Just seen your email - I didn't get an email notification. I have read there are problems with clones. For now I have got round the problem by using The system is now install. Next time it is down for maintenance I will check and try your suggestions. Alan |
I've discovered that if the last character of the text to be displayed is a blank then the screen briefly shows the text and then goes all white (as in the first post). In my case this is likely to happen where I programmatically generate the text and use spaces to pad out the text to get alignment. Luckily I push all my text to the screen via a common function so in that function I can test for a blank last character(s) and remove. |
First, many thanks for making this LCD function available :)
I have installed RPLCD-1.3.0 using sudo pip3 install RPLCD. I have a 2004A V1.1 display with a PCF8754 +2037 and I'm using I2C on a Rasp Pi Zero w/o wifi under Buster 5.10.17+ #1421
I can write text OK:
but when I use clear() or home() the screen is filled with white pixels and the text is very hard to read.
Turning the backlight off and then on also fills the screen with white pixels.
But in all cases, as soon as I write text it is OK again but not if the text is spaces or a null string.
Could this be a bug or a faulty screen or me not understanding how to use RPLCD?
Best wishes,
Alan
The text was updated successfully, but these errors were encountered: