I'm sending a string from an ASCII object, and have verified the string is being sent using a dumb terminal, but I need to add a at the end of the string. Can anyone help me with the syntax?
I am assuming you mean Carriage Return by . If so, you can use \r with your string to send a carriage return. Similarly, \f sends a formfeed and \n sends a newline. See online help under ASCII Object for other control characters.