Repeatedly call a function in App Designer while working with the App

62 views (last 30 days)
Hi,
I created an app in app designer that has buttons to load, plot, process and analyze data.
How do I implement a function into the app that runs every second while the user can simultaneously work with the app and click on buttons, load data, etc.
I want the app to continously do something regardless of what action the user takes on the app. The app is supposed to communicate with a PLC, read and then send back a signal continuously every second after startup of the app. When the app crashes or is closed the function wont be called anymore.
Thanks.

Answers (1)

Florian Bidaud
Florian Bidaud on 28 Oct 2022
Edited: Florian Bidaud on 28 Oct 2022
Hi
Have a look a these:
I can think of roundabouts to avoid using the background pool but they won't do exactly what you want.
  2 Comments
Konvictus177
Konvictus177 on 2 Nov 2022
Edited: Konvictus177 on 2 Nov 2022
I implemented a private function in my app that reads certain data from plc and sends data to plc.
In my app startup function I created a timer object that calls this read & send function every second.
This seems to be doing exactly what I want without using background pool. Only thing I have noticed is that when I update a table on my gui the read&send data function is not doing its jobs for a few milliseconds. Would background pool be able to solve this issue?
While this function is continuously running, the user can do other stoff on the app interface such as select data, plot data, .... etc.
Florian Bidaud
Florian Bidaud on 21 Nov 2022
Sorry to answer that late,
But yes, with the function parfeval, you can call a function in another pool, while keep running your app as usual.
Let's say the code you want to run can be written as [Y1,Y2] = function calculationBackground(X1,X2,X3), you could call
F = parfeval(@calculationBackground, 2, X1,X2,X3)
and then get the results with
[Y1,Y2] = fetchOutputs(F)
For your application you will need to include the pause inside that background function

Sign in to comment.

Categories

Find more on Manage Products in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!