Redlion G306 screen changes

Karac

Member
Join Date
Jan 2012
Location
South Carolina
Posts
6
Is there a way to have an Allen-Bradley Micrologix 1100 control the screen changes in a Redlion G306? I can't seem to find any way to associate the screens with some variable that the A-B could alter.

My only idea would be to create a variable for screen changes, then create a program in the redlion that runs continously and uses a switch statement based off that variable to call it's internal GotoPage() function. Would that idea work or is there a more simple method?
 
I think you are on the right track. You could use the page global actions "on tick" action to call your program, but this might impact overall HMI efficiency.

You might also set up a trigger for the tag you intend to use, and call your page select program from the tag trigger. I think this may be more efficient. If the tag is an integer and the trigger is set for Change In Value and Value is set to 1, it should run the program only when the PLC changes the tag.

In the program, I would recommend a case/switch construct to call the appropriate GotoPage command. You may even put Case 0 at the beginning of the switches to bail out early without changing pages to closely emulate the behavior of a Panelview remote screen tag.

Paul
 
Last edited:
The way I do it is to use word my PLC writes to and each bit it the word controls a screen.

I create a tag for each bit and then I use the trigger to GotoPage(x). This makes the function trigger once every time the bit tag goes true.
 

Similar Topics

Hi, I have a Redlion G306 and its GSM Modem add on which I have successfully managed to send and receive texts from. I'm interested to know...
Replies
0
Views
2,174
Hello masters, I have a trouble, I need change the IP for ML1400, I have a program with download the results with archive csv, but the program it...
Replies
1
Views
2,966
I have a G306 hmi I have tried to upgrade from a panelview 600 on an existing line that is connected to a SLC 5/03. I have had succuess for the...
Replies
7
Views
2,605
Hi all I just upgraded our G306 to a bigger G310 display. The G310 just will not serve a web page to the Internet. I can see it on the LAN...
Replies
2
Views
2,229
HI, As you can see from my name ! I am struggling ! I am trying to get my SLC 5/03 talking to and working with my RED LION G306 Hmi. I have...
Replies
2
Views
4,302
Back
Top Bottom