FA11563
29 December 2021
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);