Sign in to follow this  
Followers 0
Guest Newbie

Sequencer

4 posts in this topic

Hello; Does Omron PLC (CS1G with CX Programmer) have any instruction that is equivalent to Allen Bradley's PLC SQO instruction (sequencer output)? Thanks in advance for any sugguestion.

Share this post


Link to post
Share on other sites
Although there is not a direct replacement for the SQO instruction, it would fairly simple to construct the sequencer with only a few instructions. Look at ASFT(17) and WSFT(16) for file operations. Use ANDW(34) and ANDL(610) for the mask and destination. Use BSET(70) and XFER(71) for initialization of the file. Also look at MCMP(19) for file to file comparison.

Share this post


Link to post
Share on other sites
The best instruction I have seen to model the SQO is a data collect instruction (COLL). The main difference is that the data collect does not use a MASK. You can use a reversible counter (with a defined preset value) to step through each position with defined length of your source base address.

Share this post


Link to post
Share on other sites
Great idea! If you need a mask, use a second COLL to point toward the table of masks. Then use ANDW(34) to bring the output of the two tables together.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0