FTView ME Text/Object Table

ck8177

Member
Join Date
Oct 2021
Location
SW Ohio
Posts
31
Many of my current projects include I/O status screens listing all discrete inputs and outputs by module, with a description and on/off indicator for faster troubleshooting. I'm currently using an individual text boxes for each designation/description, which makes data entry and alignment somewhat time consuming. Is there an option to use a table of text values or objects in FTView ME, similar to HTML? Bonus points if it can read text values from a .csv file. Sounds like this would be within the realm of an ActiveX control of some kind, but so far no luck.

TIA
 
All of my projects have these IO descriptions stored as strings in the plc and the hmi screen is dynamic with plc logic to pull the correct in/out data bits as well as address and description. Sending all of this information to the plc is done with some homemade software based on AdvancedHMI and an excel spreadsheet that all of my project details and io mapping are completed with. As long as I am ontop of wiring changes and keep the excel spreadsheet up to date its a 45s download at the end of the project for all of the 500+ IO points to be updated on the screen ��. One hmi screen is common with 16 points and all words are String tags relating to an array of udt stored in the plc. Hmi pointer is applied via combo selector based on what card/io device is looking to be updated.

Udt elements I use in the array of io data are:
.Data - DINT (in/out bits)
.Desc - String[16] (each point description for data bit)
.Address - String (I:01. or similar as a prefix for the data bit)
.Location - String (description where to find this io device)
.IP - String (address for pinging this io device)
.Catalog - String (model number and manufacturer to see what it is you're looking for on the machine)
.CommsOK - BOOL (plc logic for good comms for io device)

Well worth the investment of a couple days to get this into your project library as it can be used for all digital in/out mapping with just downloading new descriptions from the spreadsheet. The only hurdle I ran across was the time I needed language switching on the HMI... in this case I made a parameter file in Factorytalk and put all of my IO descriptions in the file, then used pointer reference relative to the desired card number and used the 20 following strings ([x+0], [x+1],[x+2]...) I could then use the language switching tool and type in the descriptions in another language.

Also, side note, individual text boxes drive me nuts on the screens, I'd rather use a single text box with multiple lines - then match up the indicators with the lines in the text box. Less elements on the screen means less things to align and centre..

TLDR: use excel for all io descriptions and never type in factorytalk again!
 

Similar Topics

I am creating a global object in FTView SE 13. I want to have a string read from the PLC and display (in this case the tagname). So lets say...
Replies
4
Views
167
Does anyone know of a way to create a global object in FTView SE that would allow me to configure some static text in the instances that can be...
Replies
1
Views
2,368
I have a version 3 ME Project opened in Version 5.10 FTView. Every thing that contains any text is displaying "?" I'm told there is a...
Replies
3
Views
1,563
I am trying to figure out how to create a list of strings, as in a multi-state indicator or string display, where a different string appears based...
Replies
7
Views
3,602
Hi all, I have a client who has asked me to investigate adding an automatic email and/or text message alert for certain QC-related process...
Replies
16
Views
5,827
Back
Top Bottom