FactoryTalk--Remote Display takes +/- 45s

ttaylor2120

Member
Join Date
Oct 2014
Location
Ohio
Posts
1
I am trying to use my PLC program to remotely change displays on my Panel view.

Technically it works, but it takes about 45 seconds to change the display and another 45s to let me use goto buttons in the HMI application. If i try to change the display after remotely changing it i get a error and it tells me the screen is still being controlled remotely. In the past when i saw this error it was due to not resetting my HMI screen tag to zero after commanding it to a screen. I have verified that i am resetting this value 1.5s after issuing any screen commands.

I am using a move command to move a screen value into a dint whose tag is tied to the global connections of my factory talk program. All of my indicators that come from the plc show up virtually instantly upon state change.

The Project file for both PLC and HMI are duplicates of an existing and functioning program. I will note that i am using a different plc than the previous system. Current:1769-L36ERM Compact Logix 5336ERM vs Old: 1756-L72 Control Logix 5572. Both are using RSLogix 5000 Verson 20.11 and factory talk view studio version 6.10.

I suppose my question is: What could be causing such a long delay before & after switching the screens remotely?

Thanks in advance,

T. Taylor
 
After you trigger the screen change from the PLC can you immediately change the screen at the terminal or is it locked out?

What is the update rate configured for on the Global Connections window? Keep in mind that the one setting applies to all of the tabs. I've seen people change the time to 60 seconds, not realizing that affects the other global settings.

OG
 
If you use a GoTo button to change displays, how long does that take?

Definitely check the Global Connections update rate as operaghost said. The default setting used to be 60 seconds (or still is depending on your version).

If you are using HMI tags change those to Direct Reference (help files talk more about that). HMI tags are twice as slow as Direct Reference.
Ex. if your update rate is 10 seconds then an HMI tag will actually take 20 seconds to update.

You can improve the timing when the RemoteDisplay tag is cleared to zero by adding a startup macro to each display.
Create a macro called "startup" and put in the below expression. Assign that macro to the startup macro for each display (display settings).
yourRemoteDisplayControlTag = 0

Using the PLC with a 1.5s timer to clear is probably okay. But you may run into timing problems now, or in the future if PLC/network/PanelView loading changes.
The startup macro will ensure that the PanelView does not miss the remote display change, and the tag is cleared to zero after the PanelView has detected the change.
 

Similar Topics

Looking to call a new screen with FactoryTalk ME v12 from the PLC with a remote parameter... FYI the parameter value is an integer 100..199 I...
Replies
1
Views
1,553
I have a situation where quite a few remote 1734 cards are not showing their input and output tags via Factorytalk when I try to assign tags to...
Replies
12
Views
3,403
I'm trying to develop a program in FactoryTalk View Studio 5.10 for a PanelView Plus 1500. I set up the RIO driver in the Communications tab and...
Replies
6
Views
7,465
Hello, i need to setup a system that can be monitored remotely. i will have a DSL line to a router and need to monitor the Panelview Plus screens...
Replies
2
Views
5,087
Hello, I have a panelview plus that reads from 4 different PLC's. 2 of these used to be Micrologix PLC's and someone else went and updated them to...
Replies
3
Views
104
Back
Top Bottom