-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
LCD Dot matrix with Toshiba T7932 and T7933 / HD44102 #1492
Comments
Hello again, I found this: https://forum.arduino.cc/t/openglcd-hd44102-to-t7932/413755 |
Hmmm... never heard about hd44102 LCD. It is not supported :-( |
I will try to buy and add support for such a display with HD44102, but it might take 2-3 months (such displays are not easy to get...) |
That's great! |
Maybe the ks0108 could be a starting point. |
Thank you! Will give that a shot when I get my adapter and report back! |
Hi Oli! Will be documenting the pinout for this LCD also to aid anyone else that might stumble on them. They are very nice |
Great. It will probably take some more days until I receive the display itself. |
Hello, Thank you for your update! This is exciting I have just traced my pinout for mine. Think i have them all, though, i have also 3 NCs, seem to valid with your data sheet also. These is the signal pins i was able to find: VDD Seems like the backlight on this one is permanently hooked to the supply. Do you have any baseplate code that might give me some initial life from this one? |
This is the connection table for my current test setup. "D/I" is important and will be controlled by u8g2. Same is true for "E". "R/W" must be connected to GND permanently because U8g2 will only write but never read from the display (However for testing, I have connected this to pin 12 in my test setup). "Vee" must be a negative voltage (around -4..-5V). I have just used 4x AA cells to generate the negative voltage. My display does not require a reset pin (RST), but u8g2 can handle the reset functionality. In your case: VSS = GND, VDD = +5V (probably, check your datasheet for this).
The constructor will probably look like this:
|
@spi5498 : I have created a new beta release 2.29.9. This release includes the constructor U8G2_T7932_150X32_1 in all of the example files. Can you test this with your display? Will something be visible? You can download the latest U8g2 beta release from here: https://github.com/olikraus/U8g2_Arduino/archive/master.zip
|
Wow, this is pretty exciting! I will try this out during the weekend and report back to you! I see that my LCD module have a LMC7660 that is probably used to generate the VEE so thats why i couldnt find that when tracing the pinout. |
Hello! Did hook up the LCD today. I did confirm the connections once and they were correct from what I can find. Will need to confirm the pinout once more I guess! not sure if there could be a tweak in the code necessary? There were no life at all |
Maybe you can share some more details (pictures, wiring, etc) so that I can also support you to crosscheck your setup. |
I do have it soldered up on a prototype shield for the uno, so not sure how visible that will be. |
woho! After some trial I found that RST needs to be set to high after power on, then it works! just did it with a jumper wire manually, so need to add this to the code :) this is very cool! Thank you so much for looking in to this! |
Wow, looks great. |
Yeah it is really nice! Aha! So reset is already implemented in the code for this? Cool! will also count all the available pixels(width and height) impossible without turning them on. |
Hi!
I have this really nice LCD module that i pulled out of a old POS-terminal.
Could not find much on that particular module, however the controller consists of 3x T7932 chips, and one T7933 chip.
I take a shot in the dark and hope that this may be some "standard" already compatible with another driver?
What do you think? Datasheets: https://www.alldatasheet.com/datasheet-pdf/pdf/31153/TOSHIBA/T7932.html & https://pdf1.alldatasheet.com/datasheet-pdf/view/31154/TOSHIBA/T7933.html
Also, if you have a teory that it might be compatible with some other library, i will be happy to test it out
The text was updated successfully, but these errors were encountered: