Parallel to serial backpack

Anthony Simpson

New member
I have a CFAG160128E-YYH-TZ LCD module I would like to interface using a serial connection. I have been trying to find a good parallel to serial backpack to accomplish this task, but I have yet to find one. Is this the best way to tackle the problem or is there another solution that I have overlooked? Any suggestions would be helpful. Thanks!
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 
Are you thinking USB serial or RS232 serial? I'll assume USB.

I haven't looked for any of that kind of hardware recently. A few years ago, I did a USB to parallel project using the Elexol USBIO24.
https://www.elexol.com/IO_Modules/USB_IO_24.php which has become rather expensive.

Another module I have used is the USBmicro U421, which is much cheaper.
http://www.usbmicro.com/documents/2CDECB6069BC98A8B0B408E789A25B26FDF6DF71.html

But realize that either of these, or any serial to parallel converter, will pretty much slow your screen updates to a crawl. Especially because the controller in this display requires 'status checks' before writing data bytes, so the interface must be bi-directional.

The alternative is to re-invent the wheel of a "smart controller", which would be a cpu with a USB interface and a few I/O ports. Then you program it in some language to impliment your invented or borrowed protocol, which takes your semi-high-level commands over the serial link, and draws the image widgets using the parallel interface to the CFAG. Lots of work to do this project.

Maybe there are already smart controller solutions on the market, I don't know.
 

Anthony Simpson

New member
Are you thinking USB serial or RS232 serial? I'll assume USB.

I haven't looked for any of that kind of hardware recently. A few years ago, I did a USB to parallel project using the Elexol USBIO24.
https://www.elexol.com/IO_Modules/USB_IO_24.php which has become rather expensive.

Another module I have used is the USBmicro U421, which is much cheaper.
http://www.usbmicro.com/documents/2CDECB6069BC98A8B0B408E789A25B26FDF6DF71.html

But realize that either of these, or any serial to parallel converter, will pretty much slow your screen updates to a crawl. Especially because the controller in this display requires 'status checks' before writing data bytes, so the interface must be bi-directional.

The alternative is to re-invent the wheel of a "smart controller", which would be a cpu with a USB interface and a few I/O ports. Then you program it in some language to impliment your invented or borrowed protocol, which takes your semi-high-level commands over the serial link, and draws the image widgets using the parallel interface to the CFAG. Lots of work to do this project.

Maybe there are already smart controller solutions on the market, I don't know.

We are going to be using serial to communicate, but I assume the problems are the same. We don't need to use graphics just large fonts. The refresh rate doesn't have to super fast just going to be displaying numbers (location, speed, ....ext). We decided on this screen for its size, and how good the smaller text only screens looked in the sunlight. There aren't any text only screens this large.
 
Top