GLK19264-7T-1U-GW RS232 Sample code
Posted: Sun Apr 13, 2008 1:59 pm
Hi all,
Hope I can get some more info on the screen here. What we're looking for is a screen solution with indicator LED's and a few buttons that will work with our in-vehicle telematics box. We only have an RS232 port available on our box for comms to the screen.
The GLK19264-7T-1U-GW seems to fit this need. What I'm not sure of is if this will work with our box.
Is it just a matter of sending and receiving characters over the COM port in order to control all aspects of the screen?
We have done some initial developments with another serial LCD product from C**********z (CFA635 Series Serial LCD) which seems to work OK. Obviously we would like to explore all options before settling on a specific one.
Also if anyone has any suggestions as to whether enclosures for these screens are available.
As an example, would the following C# code, with the neccessary modifications in terms of command structure and what needs to be sent etc. be enough to get talking to the screen?
--------------------------------------------------------
private SerialPort Port = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One);
Port.Open();
Port.Write("whatever is needed to be sent...");
Port.Close();
-------------------------------------------------------
Thanks in advance,
Fanie
Hope I can get some more info on the screen here. What we're looking for is a screen solution with indicator LED's and a few buttons that will work with our in-vehicle telematics box. We only have an RS232 port available on our box for comms to the screen.
The GLK19264-7T-1U-GW seems to fit this need. What I'm not sure of is if this will work with our box.
Is it just a matter of sending and receiving characters over the COM port in order to control all aspects of the screen?
We have done some initial developments with another serial LCD product from C**********z (CFA635 Series Serial LCD) which seems to work OK. Obviously we would like to explore all options before settling on a specific one.
Also if anyone has any suggestions as to whether enclosures for these screens are available.
As an example, would the following C# code, with the neccessary modifications in terms of command structure and what needs to be sent etc. be enough to get talking to the screen?
--------------------------------------------------------
private SerialPort Port = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One);
Port.Open();
Port.Write("whatever is needed to be sent...");
Port.Close();
-------------------------------------------------------
Thanks in advance,
Fanie