How to convert an integer value to bits?

Hello.

I am reading data from a device and are integer values ​​but I need to manipulate bits.
is there any way to convert integers to bits.

thanks.

If you already have an integer tag you can use the expression language in property binding to get out any bit. For example, to get the bit in position 1 do the following:getBit({Path/To/Tag},1)You can also reference bits in OPC item path field. In that case you would have a SQLTag per bit.

What driver are you using? If the driver supports bit-level reading and/or writing it will be much easier.

Worked with the expression.
getBit ({Path / To / Tag}, 1)
Thanks