Sign in to follow this  
Followers 0
Rania B'm

the code #FF06

2 posts in this topic

Hi ,
I'm just starting to learn about programing with Cx-One and i'm facing some problems with codes that i have to use.
Can anyone tell me about the role of the code  ‪#FF06 and when shoud i used please ?
and i'll be grateful if you show me a link that may help me.
thanks

Share this post


Link to post
Share on other sites

If you are seeing this code in your ladder program, the # symbol just means a Hexadecimal or BCD constant.  So, it means a 16 bit binary pattern of a word.  The bit pattern that is equivalent to the HEX value of #FF06 is 1111 1111 0000 0110.  A HEX value of FF06 also means an unsigned integer value of 65286 and a signed integer value of -250.  To really understand what it is doing, we would have to see how it is being used. 

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