Numeric Display in Factory Talk ME

obi1987

Member
Join Date
Jan 2014
Location
lahore
Posts
114
I am using FT Numeric Display.What I want to do is,I made one Memory Tag Test1 and I want to store result in this memory Tag and the value of that Tag I want to show on HMI. Below is my code but i need to show test1 result in Numeric Display.

If {[F1]TEST} == 1
Then
test1={[F1]DuTY_START_TIMER1.PRE}
Else
test1 == 0
If {[F1]TEST2} == 1
Then
test1={[F1]DuTY_START_TIMER2.PRE}
Else
test1 == 0
If {[F1]TEST3} == 1
Then
test1={[F1]DuTY_START_TIMER3.PRE}
Else
test1 == 0
If {[F1]TEST4} == 1
Then
test1={[F1]DuTY_START_TIMER4.PRE}
Else
test1 == 0
If {[F1]TEST5} == 1
Then
test1={[F1]DuTY_START_TIMER5.PRE}
Else
test1 == 0
 
Yes, let the PLC do what it does best and leave the scripting out of the HMI when possible. Convert your memory tag to a PLC tag, and move the appropriate Timer.PRE into a PLC tag for display.
 

Similar Topics

I have a generic faceplate for motor control, auto man start stop eunning stopped indication. I am trying to add a numeric display for variable...
Replies
3
Views
3,915
Hello I'm looking for a simple way to transform numericInput Fields into numeric Output. I made several supervision screens with hudreds of...
Replies
7
Views
750
I am working to upgrade old QuickPanel screens to modern QuickPanel+ screens in machines. In Proficy Machine Edition 9.5 SIM 28 I converted a...
Replies
5
Views
2,711
I'm trying to display a timer's PRE value in seconds. It works when I hit the test display button, but it displays as ?????? on the HMI and also...
Replies
5
Views
1,824
Hi, How do I change a numeric display color based on another bool tag? I am trying to display a RPM number and I want it to turn green when a tag...
Replies
4
Views
2,186
Back
Top Bottom