I want to use the following Sharp LCD but Ithink it has no driver built in LQ024B7UD01 and the datasheet is this: Datasheet
Anyone knows if there is already a working library to deal with it or must I implement all the interface timing?
I want to use the following Sharp LCD but Ithink it has no driver built in LQ024B7UD01 and the datasheet is this: Datasheet
Anyone knows if there is already a working library to deal with it or must I implement all the interface timing?
Can arduino handle a "i80 parallel interface" to drive this lcd
Yes, a UNO can drive an 8080 parallel interface. The controller looks very straightforward.
It is YOUR job to look for existing libraries. If you have 1000 of these units, it is worth writing the software. If you only have one then it is more trouble than it is worth.
Quite honestly, you can buy modern 240x320 modules very cheaply.
David.
This screen is "sunlight readable", suitable for exteriors as it is a transflective display. I don't know why is so cheap but the others I've found are very very expensive or sell only in alibaba.
I have only found the utft library here utft. I think it can work if I initialize the screen in the "initlcd.h" and "setxy.h" headers following the Datasheet I posted.
Also I must implement a new model in TFT.h and asign the right width, height and 8bits interface in UTFT init method.
It will use 8 pins for data and 4 for control (RS, WR, CS, RST). A total of 12 pins.
Yes, it is very easy to add a new device to UTFT library.