Sign in to follow this  
Followers 0
Rodney

Q PLC

2 posts in this topic

I am presently working on a Q series P.L.C and in the Ladder code there is bit addressing e.g D1001.0. I have found that if D1001 is between 0 and 3 then d1001.0 is on. However I also have D1001.1 and I can not find what values turn D1001.1 on. Any help would be appriciated. Rodney

Share this post


Link to post
Share on other sites
D100 = Word = 16 bits = 0000000000000010 for example. D100.0 = first bit of D100 = 0 in the case above. D100.1= 2nd bit = 1 in the case above up to D100.F if D1001 = 1 base 10 then D1001 = 01 binary. Therefore D1001.0 = 1 and D1001.1 = 0. if D1001 = 2 base 10 then D1001 = 10 binary. Therefore D1001.0 = 0 and D1001.1 = 1. if D1001 = 3 base 10 then D1001 = 11 binary. Therefore D1001.0 = 1 and D1001.1 = 1. Edit:I'm in Staffordshire, so PM me if you need anything! Edited by Veganic

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