How to switch panels based on time in Magelis XBT G/GT terminals automatically.
In order to switch panel automatically based on time a script has to be written during the application development stage.
Below is the sample script:
int a=Integer01.getIntValue();
if (a<3)
{
a=a+1;
_CurPanelID.write(a);
}
else
{
a=0;
}
Integer01.write(a);
Answers which others found helpful |