Wonderware have a Multistate Indicator?

Chado613

Member
Join Date
Mar 2005
Location
Kingston
Posts
79
Does wonderware have the equivalent of a multistate indicator?
Basically I would like to display a name based on the value of an Integer, but looking for a better way than simply using a visibility animation.

Any ideas? Thanks
 
yes, what we usually do is build a data change script that looks at your integer tag value, then writes what you specify in the script to a string tag. then you just display the string tag on the screen.

here is an example of the data change script

IF FirstOut_Word == 0 THEN
FirstOut_Msg = "First Out Clear";
ENDIF;
IF FirstOut_Word ==1 THEN
FirstOut_Msg = "PLATFORM SAFETY SYSTEM SHUTDOWN";
ENDIF;
IF FirstOut_Word == 2 THEN
FirstOut_Msg = "HIGH GAS SHUTDOWN";
ENDIF;
IF FirstOut_Word == 3 THEN
FirstOut_Msg = "LACT CONTROL PANEL MANUAL SHUTDOWN BUTTON";
ENDIF;
 

Similar Topics

Hi guys, I have experience with PLC to Excel etc...just starting on using intouch scada screens. I have an Excel sheet that uses mainly...
Replies
1
Views
159
Hello everyone, Recently, my Archestra IDE shut down while I was editing. After restarting the IDE, I noticed warning symbols under my opened...
Replies
1
Views
106
Good morning all. I'm working on a rehab where they had a standalone InTouch 2014 HMI that they called a SCADA, but it's really basic stuff. The...
Replies
4
Views
190
Hi, We are setting up an Aveva Plant SCADA node with the intention to connect it to a Wonderware Historian node. Everywhere I look online I see...
Replies
1
Views
184
Hola chicos. Tengo un problema con el driver de comucicacion dasabcip 5, y un plc controllogix v34, ya realice la comunicacion pero en ciertos...
Replies
2
Views
168
Back
Top Bottom