SLC to Click program conversion

ghutto

Member
Join Date
Jun 2021
Location
Georgia
Posts
5
Has anyone taken a SLC500 program and converted it to an Automation Direct Click PLC program?
I searched but didn't find anything.
 
I am sure many people have but if you are asking if there is some tool that will do this for you... no.
 
Noteworthy differences:
The click has rising and falling edge contacts that replace the inline one-shot instructions (OSR or ONS)

The first scan bit in a click does not fire when the PLC enters run mode from program mode, only when it powers up. It should be called a power-up first scan bit.

MSG instructions are replaced with SEND or RECEIVE instructions and those will happen repeatedly as long as the rung is true. If you put a rising edge contact ahead of them in an attempt to mimic SLC/Micrologix behavior, you may not get consistent results.

None of the data values can be seen or edited offline in a Click.

The Click uses one MATH instruction for all math operations. It is much like the CPT in RSLogix.

The Click uses the COPY instruction in place of MOV and COP instructions in RSLogix, but the behavior is different in certain situations, like trying to copy the bit pattern of a Float into two consecutive integers.

There are probably other important things I am not thinking of right now.

I have quite a few Clicks doing some relatively complicated controls and communications and I generally like them. If they'd add trending and make the communications instruction behavior more like the SLC/Micrologix, that would be nice.

If they'd do that and add serial DF1 radio modem protocol, I might never buy another Micrologix PLC.

One thing they do that a SLC can't is store all the comments and data views in the PLC. Their PID implementation performs better than a SLC/Micro and includes Autotune that worked perfectly the one time I tried it. Interestingly, you can view a Trend of a Click PID, but not just any old tags of your choosing.
 
Last edited:

Similar Topics

I’m attempting to send a temperature from a SLC-5/02 to an EZiMarquee display. The vendor said to use a MSG instruction to send the data to the...
Replies
1
Views
93
Hello all. I have a few SLCs in my plant and of late we've seen a weird issue: The system will be running normally and then randomly the outputs...
Replies
2
Views
103
I am working on setting up a Prosoft Datalogger model PLX51-DLplus-232. This unit will be collecting data from a SLC 5/05 on the DB9 port set to...
Replies
3
Views
104
I have a redundant ControlLogix being set up. This program reads a value from a remote site which happens to be SLC PLC. Rockwell mentions SLC...
Replies
2
Views
96
Hello, I have a ControlLogix redundant controller being set up. The program reads a value from a remote site which hosts a SLC PLC. Rockwell...
Replies
0
Views
80
Back
Top Bottom