This article is about the function of the masking in the PLC. Here, I will use Siemens TIA PORTAL.
Masking helps us to cover something or mask which you don’t want to see. In the PLC terms Masking means to filter the data which you don’t want to use while execution of the PLC programming.
You may have noticed when you make a purchase, At the time of payment when you enter your ATM card number, it won’t allow you to use any alphabet that what you can call is masking.
Masking in PLC
Let’s understand the function of masking with an example. Do follow the below example and also play around with the different values to understand it.
For example, let say I have a temperature transmitter. As this is an analog signal data type, so we need a word or doubleword data type.
I want that if PLC receives a signal from a temperature transmitter, I need some data to masked off. The bit which I want to mask off is “00FF” which in binary represented as “0000 0000 1111 1111”.
Now we will implement the above example. Open TIA PORTAL.
In the logic operation, add AND instruction.
I already have covered an article on logic instruction. Please find it from somewhere down and read it.
Comments
Post a Comment