function SwitchValueChanged(app, event)
value = app.Switch.Value;
while(value=='On')
pause(0.05);
end
end
This is a callback for Switch in APP Designer. When Switch is switched to On, the while loop is executed, and when Switch is switched to Off, the loop is terminated.
In fact, when switching to On, after the loop starts, switching the Switch state again will not enter the callback function, resulting in the failure to terminate the while loop.
0 Comments
Sign in to comment.