Hi. I’ve got a VMA412 2.8" LCD display. I have two questions:
The display has pins marked 5V and 3.3V. Do I need to power both of them or is this there to let me choose to run the display from either 5V or 3.3V?
Does this display have a built-in character generator? Ie. if I send “A” down the serial line, will it print “A” on the display or do I need something like the Sparkfun LCD Serial Backpack to make this work?
OK thanks very much for the reply. At least that’s something. I’m trying to use this with a Particle Photon, so it sounds like I’ve got some work to do.
Well that at least answers question 1. I looked up the pinout of the Arduino Uno and it shows 5V and 3.3V adjacent to each other. If you connect this display by dropping it onto the Ardudino, you’re automatically connecting both voltages.
As for the other question, the Arudino GFX library is already available for the Particle Photon as is the ILI9341. I’m guessing all I need now is the Adafruit TFTLCD library from Github. Porting to the Photon is tricky. Sometimes it’s easy, other times it’s frustrating.
For some demo sketches you’ll need the adafruit library.
The adafruit TFT LCD (Adafruit_GFX.h) can you download on github.
link: Adafruit_GFX.h library
Thanks, yes as I noted above the GFX library is already available for the Photon but the TFTLCD library is not. That would involve porting it from Github. That may or may not be easy - I haven’t tried it yet.
Thanks for your reply, Wrong_Way. So far I’ve followed the instructions in MCUFRIEND_kbv (essentially just copy the MCUFRIEND_kbv folder to my libraries folder), and have successfully manually installed and run the GLUE_Demo_320x240 demo sketch. I’ll work on the examples next, then the touch screen.