Micrologix 1500 ASCII Interface To Sick CLX490

bporfidio

Member
Join Date
Mar 2006
Location
Indiana
Posts
1
I have an application where I need to put a Sick CLX490 in "Sleep Mode" and put it back into "Run Mode" (Laser On) utilizing the ASCII AWT command. You do this by the following Hex Code.

Sleep Mode = ASCII 13 (02313303)
Run Mode = ASCII 11 (02313103)

My issue is I know how to use the AWT command, but do not know how to properly enter the data into the string so the scanner interprets it correctly. Can anyone help?
 
I had to look at that a couple of times before it makes sense. The Sick CLX490 requires a starting byte (02 hex) then two ASCII characters (which happen to be digits) then an ending byte (03 hex).

In an RSLogix 500 String type data element, you enter unprintable ASCII characters with a backslash \ and the value. RSLogix 500 tries to convert most of those to a "control character" equivalent, which I think just confuses things because control characters are really obsolete and can be ambiguous, while hex codes for ASCII characters are precise.

To enter the strings you want, type them as follows:

\0211\03
\0213\03

they will show up as

^B11^C
^B13^C

You should see that the String length is 4 characters.
 

Similar Topics

Good morning to all, I need to modify an existing PLC MIcrologix 1500 configured with a Modem on Channel 1 (DF1 Full Duplex) and an...
Replies
7
Views
1,431
Hello, I am a veteran Mitsubishi programmer, but am new to AB. I have a Micrologix 1500. I am receiving a string via RS232 on Channel 1. In...
Replies
3
Views
5,011
I am trying to use a ML1500 to communicate with a barcode reader via ASCII protocol. It isn't working, so I tried to verify the reading/writing...
Replies
6
Views
5,241
Hello Guys\Gals, I am trying to write to a simple display from my Micrologix 1500 processor's serial port. (LRP, so I have 2 channels, the...
Replies
4
Views
3,086
Good Morning all, I have what may be a simple problem that is causing some major headaches this morning. I am trying to integrate a Zebra...
Replies
3
Views
6,791
Back
Top Bottom