Quote Originally Posted by dbachman View Post
so like this huh?

HSEROUT ["hello",cr]
I don't think hello is a directive.
PLX-DAQ Directives
PLX-DAQ analyzes incoming data strings from the controller for action. Strings begin with a directive informing PLX-DAQ of what action to take.
  • All directives are in CAPITAL letters, and some are followed by comma-separated data. Each string MUST end in a carriage return (CR).
  • Strings not beginning with directives will be ignored.
  • Note that the BASIC Stamp's DEBUG instruction is used in the following discussion.
Maybe something like:
HSEROUT ["DATA,","1,","2,","3",13]

or:
HSEROUT ["DATA,",DEC x,",",DEC y,",",DEC z,13]

Those will show in different columns. If you want more rows, then more like their basic stamp example.