Another PanelBuilder32 Question

SilverLoop

Member
Join Date
Oct 2002
Posts
87
is it possible to disable pushbuttons and goto-screen buttons with a control tag?

i am wanting to use the plc to cause a PanelView 550 to goto a manual screen and depending upon other things control what pushbuttons are allowed to be used.

thanks for your help!
 
Not directly but indirectly it is very possible.

If you use the PLC to control the screen changes then it is easy to allow/disallow the screen changes in the PLC.

Likewise, with your pushbuttons, just use thet bit from the PB or don't use it in the Panelview.

When I have done this in the past, I have created an enable bit for each pushbutton on the screen and used this to drive the Indicator Tag of the object to make it appear dimmed out when it is not enabled.

You can make things simpler for yourself if you follow an addressing scheme for the bits to organize all this. For instance you can put all your pushbutton bits in the B13 file so you would have tag addresses B13/000 B13/001 etc... Then when you want to create enable bits for these pushbuttons, put them in another file, for instance the B12 file. So, the enable bit for the pushbutton related to bit B13/045 would be B12/045 and so on.

Then your logic to react to each button will look something like:



BUTTON_X ENABLE_X DO_SOMETHING
B13/008 B12/008 B3/289
----] [----------] [----------------------( )------

 

Similar Topics

Hi, The hardware is: Click Plc model # CO-O1DD1-O HMI model # S3ML-R magnetic-inductive flow meter model # FMM100-1001. I will set the flow meter...
Replies
4
Views
127
So I had an odd request from a customer for the above. I have written the logic and tested it all in one PLC with only using 7 outputs and 7...
Replies
15
Views
427
Hello I need to message read the entire 16 channel raw analog inputs from a 1769-L33ER Compact Logic controller to another 1769-L33ER Compact...
Replies
8
Views
241
I am noticing a problem where i am using MOV instruction and writing literal text into source and String datatype in destination. It works fines...
Replies
6
Views
486
I'm not actually in front of the equipment yet, but this is the information that I have been given by a client: ------------ Data from HART...
Replies
2
Views
334
Back
Top Bottom