HELP! why 253.14 with shift register?

jeelin118

Member
Join Date
Jul 2010
Location
PEnang
Posts
2
hello people, im totally NEW in plc.
i'v read reference of ladder diagram (OMRON PLC CPM1A-20CDR).
why do people use 253.14 as data input of shift register?
i'v search around the internet for the usage of 253.14, but there aren't one!
i understand that 253.14 is normally open, but under which condition it will close and enable the shift register?
could someone please explain?? :cry:

thanks A LOT!!

shift register.jpg
 
Last edited:
hello people, im totally NEW in plc.
i'v read reference of ladder diagram (OMRON PLC).
why do people use 253.14 as data input of shift register?
i'v search around the internet for the usage of 253.14, but there aren't one!
i understand that 253.14 are normally open, but under which condition it will close and enable the shift register?
could someone please explain?? :cry:

thanks A LOT!!

You are a little sketchy on details, but based on the Address, it looks like you are using a C200H Series PLC. If that is the case, then 253.14 is the Always Off Bit. So, I think you are going to give us a few more details on it's usage in your program. If you could post the Program File (Zip it first), we can have a look at how it is being used for you.

Also, post the exact model of Omron PLC you are using.

Stu......
 
hi,
im not sure about the model but i GUESS its CMP1A, because im a college student, we dont go that IN DEPTH about the plc model. we are not taught about the models, we learn only the basic programming language and were given task to write program for cylinder to work.
 
hi,
im not sure about the model but i GUESS its CMP1A, because im a college student, we dont go that IN DEPTH about the plc model. we are not taught about the models, we learn only the basic programming language and were given task to write program for cylinder to work.

I don't do any programming with the CPM1A, however my CX-Programmer supports it. 253.14 is the Always Off Flag on it as well. Details and information are important if anyone is going to be able to help you. It is somewhat equivalent to "My car is Green, why won't it start?" You at least need to show us the PLC Code that is confusing you. As I said earlier, the entire program is best, since we can see everything in context. I see you have added some code to your original post. That is much more helpful, but is it everything that affects the Shift Register?

Stu....
 
Last edited:
SFT(10) instruction is available for all the Omron PLC models. Below is the exact quote from the Instruction Reference Manual:



When the execution condition on the shift input changes from OFF to ON, all
the data from St to E is shifted to the left by one bit (from the rightmost bit to
the leftmost bit), and the ON/OFF status of the data input is placed in the rightmost bit.

So in your case, whenever "Clock" (200.02) bit goes off to on, all the bits in word HR00 are shifted and the available space is filled with a '0' bit - that is why there is 'Always off' (253.14) system bit at the 'Data' input. If someone wanted to fill the space with '1's, he would have to put 'Always on' instead.

When 'Stop' (000.03) bit goes on, the shift register resets.
 
in your logic you move a value of 1 into HR00 in the second line
that gives you a word value of 0000 0001
by shifting a 0 into the register you effectively move the 1 over a bit each cycle
0000 0010
0000 0100

Etc

Have fun
 
Right Click the SFT Instruction and then click on Instruction Help.

You can also go to the Omron Website at

http://www.omron247.com

Search for Document W353-E1-06. The SFT Instruction is on Page 422 Section 7-16.

There may also be a more suitable site near you that you can get manuals from.

Stu.....
 

Similar Topics

I've adjusted the IP of the Panelview Plus as well as the DNS servers; the screen does not show up in the search when I go to the transfer utility...
Replies
3
Views
70
Hi Everyone, I own a GE Versamax controller that I purchased for a class at Long Beach City College a couple of years ago. I lost the use of my...
Replies
1
Views
44
I was wondering if anyone could help i am trying to use a SLC 500 with a 5/05 processor to set up an incremental encoder to a HSCE2 card? The card...
Replies
1
Views
91
Hello, I am working with cimplicity workbench, I have made changes to the current project from this machine I am using in the past. However when...
Replies
0
Views
45
Hello, doing switch from FBD to ST. First task is converting my old work. How do you sum variables? For example, Interlock1, interlocl2 and...
Replies
5
Views
186
Back
Top Bottom