Master Controls

Let's now look at what are called master controls. Master controls can be thought of as "emergency stop switches". An emergency stop switch typically is a big red button on a machine that will shut it off in cases of emergency. Next time you're at the local gas station station look near the door on the outside to see an example of an e-stop.*IMPORTANT- I'm not implying that this instruction is a substitute for a "hard wired" e-stop switch. There is no substitute for such a switch!!! Rather its just an easy way to get to understand them.

The master control instruction typically is used in pairs with a master control reset. However this varies by manufacturer. Some use MCR in pairs instead of teaming it with another symbol. It is commonly abbreviated as MC/MCR(master control/master control reset), MCS/MCR(master control set/master control reset) or just simply MCR(master control reset).

Here's one example of how a master control symbol looks: master control symbol whereas this is an example of a master control reset:master control reset symbol. To make things interesting, many manufacturers make them act differently. More on that in a moment.

Let's now take a look at how its used in a ladder diagram. Consider the following example:

mc/mcr ladder

here's how different plc's will run this program:

The difference between manufacturers X and Y above is that in the Y scheme the scan time will be the same(well close to the same) regardless if the block is on or off. This is because the plc sees each instruction whether the block is on or off.

To better understand the above click herego to animationand view the animation.

Most all manufacturers will make a previously latched instruction(one that's inside the mc/mcr block) retain its previous condition. If it was true before it will remain true. If it was false before it will remain false. Timers should not be used inside the mc/mcr block because some manufacturers will reset them to zero when the block is false whereas other manufacturers will have them retain the current time state. Counters typically retain their current counted value.

Here's the part to note most of all. When the mc/mcr block is off,(i.e. input 0000 would be false in the ladder above) an OUTB (OutBar or OutNot) outbar symbol instruction would not be physically on. It is forced physically off.

In summary, BE CAREFUL!!! Most manufacturers use the manufacturer Y execution scheme shown above. When in doubt, however, RTFM (i.e. Read The Manual).