I’m mainly posting this incase someone with similar displays and drivers is trying to find what libraries are available to use.
Thanks David for all your work.
I have a 800x480 5” ssd1963 display (ER-TFTM050-5) with a ER-AS-SSD1963 driver board. It is attached to a Arduino Mega2560.
I have been using the excellent UTFT and UTouch libraries as I haven’t found any other libraries to drive this board and display.
I came across the UTFTGlue library today via this forum so I have downloaded it and installed it.
I needed to make a few changes/additions to the 800x480 example but it is up and running fine.
My main question is regarding the line UTFTGLUE myGLCD(0x91 63, A2, A1, A3, A4, A0);.
Further down, commented out with comments re changing your model parameters, is UTFT myGLCD(ITDB50, 38, 39, 40, 41); which I changed to
UTFT myGLCD(SSD1963_800480,38, 39, 40, 41); which I know works.
I added to setup()
PinMode(8,OUTPUT);
digitalWrite(8,HIGH); //to turn the black light on
Both those changes were necessary to get the sketch to work.
My question is, do I need the UTFTGLUE myGLCD(0x91 63, A2, A1, A3, A4, A0);. line? It wouldn’t work just with that line without my
UTFT myGLCD(SSD1963_800480,38, 39, 40, 41) line.
What’s it’s purpose please?