Internet PLC Forum
General => Technical support => Topic started by: GMG on December 01, 2004, 06:39:18 AM
-
I am using outcomm to send counting interger A like this
outcomm 1,A
The outcomm sends interger A in HEX format ,
how can I change interger A to DEC format
-
OUTCOMM only send out A as an 8-bit binary data, not hex or DEC format. If your intention is to send a string representation of the number in variable A, then use PRINT #1 STR$(A) to send it out as a string of ASCII characters representing the number.