steve maker

MrPLC Member
  • Content count

    1
  • Joined

  • Last visited

Community Reputation

0 Neutral

About steve maker

  • Rank
    Hi, I am New!

Profile Information

  • Country United States
  1. Red Lion CSMSTR to Veeder Root TS-750

    I am trying to write a program to call one parameter from a Veeder Root TS-750 panel. The parameter I am trying to read is Function Code 201 (In-Tank Inventory Report). According to the VR Serial Interface Manual, the command format is <SOH>i201TT, where TT is the number of the tank. I have set up a RAW RS-232 port on the Red Lion CSMSTR and have written the following program: PortPrint (2, "01i20101"); cstring input; input=PortInput(2, 1, 13, 2000, 500); if (input!= ""){MainTanks.Var2=input;} I have attached the page from the interface manual that discusses this parameter. Right now, I am not getting a response from the TS-750 and I have the TS-750 communicating on Port 1, 9600, 8 bits, 1 stop bits, no parity. I'm new to serial programming, and any help would be greatly appreciated. Thanks. In-Tank Inventory Report.pdf