Inactivity
The Inactivity trigger
runs the operation, when no touch action have made at the configured time
in the display unit.
Block

Text
onInactive(1, ()=>{
1
});
1: Minutes
(Example)
- Add two screens (Screen1 and Screen2) and rename
Screen2 as Screen saver.
- Add an Image object to the Screen saver screen
and select an image.
- Add Inactivity trigger in the
Script editor of Screen1 and set the Time (min)
for the inactivity of the user.
- Add a Screen Change operation.
- Add Constant Values block, select
[Int] and
set 2.
In display unit, if the user is
not active for the configured time period the Screen saver screen is displayed.
Block

Text
onInactive(1,
()=>{
changeScreen(2);
});